* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #ffffff;
            color: #1d2939;
            overflow-x: hidden;
        }

        :root {
            --primary: #0066ff;
            --secondary: #00c37a;
            --dark: #071321;
            --light: #f7f9fc;
            --text: #4a5568;
        }

        .container {
            width: 90%;
            max-width: 1400px;
            margin: auto;
        }

        section {
            padding: 100px 0;
        }

        h1 {
            font-size: 62px;
            font-weight: 800;
            line-height: 1.05;
        }

        h2 {
            font-size: 44px;
            font-weight: 700;
        }

        h3 {
            font-size: 26px;
        }

        p {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text);
        }

        a {
            text-decoration: none;
        }

        .btn {
            display: inline-block;
            padding: 18px 38px;
            border-radius: 8px;
            font-weight: 700;
            transition: .4s;
        }

        .btn-primary {
            background: linear-gradient(135deg, #1e88ff, #156fe6);
            color: #fff;
            box-shadow: 0 14px 30px rgba(30, 136, 255, .22);
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            background: linear-gradient(135deg, #156fe6, #00c37a);
            box-shadow: 0 18px 34px rgba(0, 195, 122, .22);
        }

        header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            background: rgba(255, 255, 255, .96);
            backdrop-filter: blur(16px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
            z-index: 999;
        }

        nav {
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary);
        }

        .menu {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .menu a {
            position: relative;
            display: inline-flex;
            align-items: center;
            padding: 8px 0;
            color: #162033;
            font-size: .96rem;
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: .01em;
            transition: color .2s ease, transform .2s ease;
        }

        .menu a::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 2px;
            border-radius: 999px;
            background: var(--text-positive);
            transform: scaleX(0);
            transform-origin: center;
            transition: transform .2s ease;
        }

        .menu a:hover,
        .menu a:focus-visible,
        .menu a[aria-current="page"] {
            color: var(--text-positive);
        }

        .menu a:hover::after,
        .menu a:focus-visible::after,
        .menu a[aria-current="page"]::after {
            transform: scaleX(1);
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(120deg, #ffffff, #edf6ff);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .badge {
            display: inline-block;
            padding: 12px 24px;
            background: #e8fff4;
            color: var(--secondary);
            border-radius: 40px;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .hero h1 {
            margin-bottom: 30px;
        }

        .hero p {
            margin-bottom: 40px;
            max-width: 650px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
        }

        .hero-image img {
            width: 100%;
            border-radius: 30px;
            box-shadow: 0 35px 80px rgba(0, 0, 0, .12);
        }

        .stats {
            margin-top: 70px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

.hero.hero-premium {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding-block: clamp(8rem, 9vw, 9.5rem) clamp(4rem, 6vw, 6rem);
    background:
        radial-gradient(circle at 12% 18%, rgba(0, 199, 140, .14), transparent 22%),
        radial-gradient(circle at 86% 12%, rgba(0, 102, 255, .16), transparent 24%),
        linear-gradient(135deg, #ffffff 0%, #eef5fc 55%, #e8f2ff 100%);
}

        .hero.hero-premium::before,
        .hero.hero-premium::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }

        .hero.hero-premium::before {
            top: -180px;
            right: -160px;
            width: 480px;
            height: 480px;
            background: radial-gradient(circle, rgba(0, 102, 255, .08), transparent 68%);
        }

        .hero.hero-premium::after {
            left: -120px;
            bottom: -220px;
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(0, 199, 140, .08), transparent 66%);
        }

.hero.hero-premium .container {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 120px), 1440px);
}

.hero.hero-premium .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 80px;
    align-items: center;
    min-height: calc(100vh - 200px);
}

        .hero.hero-premium .badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 11px 18px;
            margin-bottom: 22px;
            background: rgba(255, 255, 255, .82);
            color: #075ccb;
            border: 1px solid rgba(7, 92, 203, .12);
            border-radius: 999px;
            box-shadow: 0 14px 34px rgba(7, 92, 203, .08);
            backdrop-filter: blur(10px);
            letter-spacing: .08em;
            text-transform: uppercase;
        }

.hero.hero-premium h1 {
    /* max-width: 15ch; */
    margin-bottom: 24px;
    font-size: clamp(3.2rem, 3.9vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -.06em;
}

.hero.hero-premium p {
    max-width: 60ch;
    margin-bottom: 24px;
    color: #475467;
    font-size: clamp(1.05rem, 1.25vw, 1rem) !important;
    line-height: 1.65;
}

.hero.hero-premium .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
    align-items: center;
}

.hero.hero-premium .hero-buttons .btn {
    min-width: 170px;
    min-height: 54px;
    padding: 0 22px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.hero.hero-premium .hero-image {
    position: relative;
    display: flex;
    align-items: stretch;
    align-self: stretch;
    min-height: clamp(760px, 86vh, 920px);
    height: clamp(760px, 86vh, 920px);
    padding: 0;
    border-radius: 34px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .76));
    border: 1px solid rgba(7, 92, 203, .08);
    box-shadow: 0 28px 80px rgba(7, 26, 46, .14);
    backdrop-filter: blur(16px);
}

.hero.hero-premium .hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    box-shadow: 0 20px 44px rgba(7, 26, 46, .16);
}

.hero.hero-premium .hero-image::before,
.hero.hero-premium .hero-image::after {
    position: absolute;
    left: 28px;
    right: 28px;
    padding: 14px 16px;
    color: #101828;
    background: rgba(255, 255, 255, .94);
            border: 1px solid rgba(7, 92, 203, .08);
            border-radius: 16px;
            box-shadow: 0 16px 36px rgba(7, 26, 46, .12);
            font-size: .82rem;
            font-weight: 700;
            letter-spacing: .02em;
            backdrop-filter: blur(10px);
        }

        .hero.hero-premium .hero-image::before {
            content: "Connected warehouse and retail control";
            top: 24px;
        }

        .hero.hero-premium .hero-image::after {
            display: none;
        }

.hero.hero-premium .hero-stats-float {
    position: absolute;
    left: auto;
    width: min(100%, 620px);
    bottom: 28px;
    right: 24px;
    z-index: 3;
    pointer-events: none;
}

.hero.hero-premium .hero-stats-float .stats {
    margin-top: 0;
    width: 42%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-left: auto;
}

.hero.hero-premium .stats {
    margin-top: 28px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.hero.hero-premium .stat {
    --zig-offset: 0px;
    min-height: 118px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 16px;
    text-align: left;
    background: rgba(255, 255, 255, .78);
            border: 1px solid rgba(7, 92, 203, .08);
            border-radius: 20px;
    box-shadow: 0 16px 40px rgba(7, 26, 46, .08);
    backdrop-filter: blur(10px);
    transform: translate3d(0, 0, 0);
    animation: heroStatFloat 4.8s ease-in-out infinite;
}

.hero.hero-premium .hero-stats-float .stat {
    pointer-events: auto;
}

.hero.hero-premium .hero-stats-float .stat:nth-child(1),
.hero.hero-premium .hero-stats-float .stat:nth-child(4) {
    --zig-offset: 9px;
}

.hero.hero-premium .hero-stats-float .stat:nth-child(2),
.hero.hero-premium .hero-stats-float .stat:nth-child(3) {
    --zig-offset: 18px;
}

.hero.hero-premium .stat:nth-child(2) {
    animation-delay: .35s;
}

.hero.hero-premium .stat:nth-child(3) {
    animation-delay: .7s;
}

.hero.hero-premium .stat:nth-child(4) {
    animation-delay: 1.05s;
}

.hero.hero-premium .metric {
    display: block;
    margin-bottom: 8px;
    color: #075ccb;
    font-size: clamp(2.15rem, 3vw, 2.2rem) !important;
    line-height: .92;
    letter-spacing: -.07em;
    font-weight: 700;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.hero.hero-premium .stat p {
    margin: 0;
    color: #475467;
    font-size: .84rem;
    line-height: 1.5;
}

.hero.hero-premium .hero-grid > div:first-child {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 200px);
    padding-block: 0;
}

@keyframes heroStatFloat {
    0%, 100% {
        transform: translateY(var(--zig-offset, 0px));
        box-shadow: 0 16px 40px rgba(7, 26, 46, .08);
    }
    50% {
        transform: translateY(calc(var(--zig-offset, 0px) - 12px));
        box-shadow: 0 30px 62px rgba(7, 26, 46, .16);
    }
}

.scroll-strip {
    position: relative;
    overflow: hidden;
    padding-block: 0 !important;
    padding-inline: 0;
    background:
        linear-gradient(180deg, rgba(5, 18, 36, .98), rgba(5, 18, 36, .96));
    border-top: 1px solid rgba(255, 255, 255, .04);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.scroll-strip::before,
.scroll-strip::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    pointer-events: none;
    z-index: 2;
}

.scroll-strip::before {
    left: 0;
    background: linear-gradient(90deg, rgba(5, 18, 36, 1), rgba(5, 18, 36, 0));
}

.scroll-strip::after {
    right: 0;
    background: linear-gradient(270deg, rgba(5, 18, 36, 1), rgba(5, 18, 36, 0));
}

.scroll-strip__track {
    display: flex;
    width: max-content;
    min-width: 100%;
    animation: scrollStrip 24s linear infinite;
}

.scroll-strip__group {
    display: inline-flex;
    align-items: center;
    gap: clamp(26px, 4vw, 56px);
    padding: 24px 0;
    color: rgba(205, 220, 241, .78);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .26em;
    text-transform: uppercase;
    white-space: nowrap;
}

.scroll-strip__group span {
    flex: 0 0 auto;
}

.scroll-strip__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00e5c3, #20a4ff);
    box-shadow: 0 0 0 6px rgba(0, 229, 195, .08);
}

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

        @media (max-width: 992px) {
            .hero.hero-premium {
                min-height: auto;
                padding-top: 120px;
            }

    .hero.hero-premium .hero-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        min-height: auto;
    }

        .hero.hero-premium h1 {
            max-width: none;
        }

            .hero.hero-premium .stats {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .hero.hero-premium .hero-stats-float {
                left: 20px;
                right: 20px;
                width: auto;
                bottom: 20px;
            }
        }

@media (max-width: 640px) {
            .hero.hero-premium .badge {
                width: 100%;
                justify-content: center;
                text-align: center;
            }

            .hero.hero-premium .hero-buttons {
                flex-direction: column;
            }

            .hero.hero-premium .hero-buttons .btn {
                width: 100%;
                text-align: center;
            }

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

    .hero.hero-premium .hero-image {
        min-height: 62vh;
        height: 62vh;
    }

    .hero.hero-premium .hero-stats-float .stats {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .hero.hero-premium .hero-image::before,
    .hero.hero-premium .hero-image::after {
        display: none;
    }

    .scroll-strip__group {
        gap: 22px;
        padding: 18px 0;
        font-size: .78rem;
        letter-spacing: .2em;
    }

    .scroll-strip::before,
    .scroll-strip::after {
        width: 56px;
    }
        }

        .stat {
            background: white;
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .06);
        }

        .stat h2 {
            color: var(--primary);
        }

        .about {
            background: white;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }

        .about img {
            width: 100%;
            border-radius: 25px;
        }

        .highlight {
            color: var(--primary);
        }

        @media(max-width:992px) {

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

            .stats {
                grid-template-columns: 1fr 1fr;
            }

            .menu {
                display: none;
            }

            h1 {
                font-size: 44px;
            }
        }

/* Extracted from former inline style attributes */
.u-001 { background:#f7fbff;padding:120px 0; }
.u-002 { text-align:center;max-width:900px;margin:auto;margin-bottom:80px; }
.u-003 { display:inline-block;padding:10px 22px;background:#e7f7ef;color:#00a86b;border-radius:40px;font-weight:700; }
.u-004 { margin-top:25px;font-size:48px; }
.u-005 { margin-top:20px;font-size:19px; }
.u-006 { display:grid;grid-template-columns:1.1fr 1fr;gap:70px;align-items:center; }
.u-007 { width:100%;border-radius:25px;box-shadow:0 30px 80px rgba(0,0,0,.15); }
.u-008 { display:grid;gap:20px; }
.u-009 { background:white;padding:25px;border-radius:18px;box-shadow:0 10px 35px rgba(0,0,0,.07); }
.u-010 { padding:100px 0;background:white; }
.u-011 { text-align:center;margin-bottom:70px; }
.u-012 { display:grid;grid-template-columns:repeat(3,1fr);gap:30px; }
.u-013 { background:#071321;color:white;padding:120px 0; }
.u-014 { color:white; }
.u-015 { color:#cfd6df; }
.u-016 { display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:20px; }
.u-017 { flex:1;text-align:center; }
.u-018 { width:90px;height:90px;background:#0066ff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:36px;margin:auto; }
.u-019 { margin-top:20px;color:white; }
.u-020 { font-size:40px; }
.u-021 { width:90px;height:90px;background:#00c37a;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:36px;margin:auto; }
.u-022 { padding:110px 0;background:#f7fbff; }
.u-023 { text-align:center;margin-bottom:60px; }
.u-024 { display:grid;grid-template-columns:repeat(4,1fr);gap:25px; }
.u-025 { padding:120px 0;background:linear-gradient(135deg,#0066ff,#00c37a);color:white; }
.u-026 { text-align:center; }
.u-027 { color:white;font-size:46px; }
.u-028 { max-width:800px;margin:30px auto;color:white;font-size:20px; }
.u-029 { background: linear-gradient(135deg, #1e88ff, #156fe6); color: #fff; box-shadow: 0 14px 30px rgba(30, 136, 255, .22); }
.u-029:hover { transform: translateY(-3px); background: linear-gradient(135deg, #156fe6, #00c37a); box-shadow: 0 18px 34px rgba(0, 195, 122, .22); }
.u-030 { padding:120px 0;background:#ffffff; }
.u-031 { display:inline-block;background:#eef8ff;color:#0066ff;padding:10px 22px;border-radius:40px;font-weight:700; }
.u-032 { margin-top:20px;font-size:19px;color:#555; }
.u-033 { margin-bottom:20px; }
.u-034 { padding:110px 0;background:#f8fbff; }
.u-035 { padding:120px 0;background:#071321;color:white; }
.u-036 { color:#d5dde5; }
.u-037 { display:grid;grid-template-columns:repeat(4,1fr);gap:30px; }
.u-038 { background:#11263b;color:white; }
.u-039 { color:#d7dee5; }
.u-040 { padding:110px 0;background:#ffffff; }
.u-041 { padding:120px 0;background:#f7fbff; }
.u-042 { display:grid;grid-template-columns:repeat(2,1fr);gap:30px; }
.u-043 { max-width:850px;margin:30px auto;font-size:20px;color:white; }
.u-044 { display:inline-block;background:white;color:#0066ff;padding:18px 42px;border-radius:8px;font-weight:700; }
.u-045 { display:inline-block;padding:10px 24px;background:#eef6ff;color:#0066ff;border-radius:40px;font-weight:700; }
.u-046 { font-size:55px; }
.u-047 { text-align:center;margin-bottom:90px; }
.u-048 { display:inline-block;background:#0e3659;color:#61b6ff;padding:10px 22px;border-radius:30px;font-weight:700; }
.u-049 { margin-top:25px;color:white;font-size:48px; }
.u-050 { color:#cbd6e2;font-size:18px;max-width:850px;margin:auto; }
.u-051 { display:grid;grid-template-columns:repeat(3,1fr);gap:35px; }
.u-052 { background:#10283f;padding:40px;border-radius:20px; }
.u-053 { font-size:50px; }
.u-054 { margin:20px 0;color:white; }
.u-055 { color:#cdd6df; }
.u-056 { max-width:900px;margin:auto;text-align:center; }
.u-057 { color:white;font-size:52px; }
.u-058 { margin:30px 0;font-size:20px;color:white; }
.u-059 { display:inline-block; padding:20px 45px; background:white; color:#0066ff; border-radius:10px; font-weight:700; font-size:18px; }
.u-060 { display:inline-block;padding:10px 24px;background:#eef8ff;color:#0066ff;border-radius:40px;font-weight:700; }
.u-061 { margin-top:20px;font-size:18px;color:#666; }
.u-062 { display:grid;grid-template-columns:repeat(6,1fr);gap:25px; }
.u-063 { font-size:48px; }
.u-064 { text-align:center;margin-bottom:80px; }
.u-065 { color:#cbd6e2; }
.u-066 { background:#10283f;color:white; }
.u-067 { padding:120px 0;background:#f8fbff; }
.u-068 { display:inline-block;padding:10px 22px;background:#eaf6ff;color:#0066ff;border-radius:40px;font-weight:700; }
.u-069 { margin-top:25px; }
.u-070 { padding:120px 0;background:white; }
.u-071 { display:inline-block;padding:10px 22px;background:#eef6ff;color:#0066ff;border-radius:40px;font-weight:700; }
.u-072 { margin-top:20px; }
.u-073 { max-width:900px;margin:auto; }
.u-074 { font-weight:700;font-size:18px; }
.u-075 { margin-top:15px; }
.u-076 { display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start; }
.u-077 { color:#d5dde5;margin-top:25px; }
.u-078 { margin-top:40px; }
.u-079 { background:white;padding:40px;border-radius:20px; }
.u-080 { width:100%;padding:18px;margin-bottom:20px;border:1px solid #ddd;border-radius:8px; }
.u-081 { width:100%;padding:18px;border:1px solid #ddd;border-radius:8px;margin-bottom:20px; }
.u-082 { background: linear-gradient(135deg, #1e88ff, #156fe6); color:white; border:none; padding:18px 40px; border-radius:8px; font-weight:700; cursor:pointer; box-shadow: 0 14px 30px rgba(30, 136, 255, .22); }
.u-082:hover { background: linear-gradient(135deg, #156fe6, #00c37a); box-shadow: 0 18px 34px rgba(0, 195, 122, .22); transform: translateY(-2px); }
.u-083 { padding:0; }
.u-084 { width:100%;height:315px;border:none; }
.u-085 { background:#02111f;color:white;padding:70px 0; }
.u-086 { display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px; }
.u-087 { color:#9db0c2;margin-top:20px; }
.u-088 { list-style:none;padding:0;margin-top:20px;line-height:2; }
.u-089 { line-height:2;color:#9db0c2; }
.u-090 { margin:50px 0;border-color:#19344f; }
.u-091 { text-align:center;color:#8ca3b7; }
.u-092 { position:fixed; bottom:30px; right:30px; width:60px; height:60px; background:#25D366; color:white; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:30px; text-decoration:none; box-shadow:0 10px 30px rgba(0,0,0,.3); z-index:999; }
.u-093 { position:fixed; bottom:105px; right:30px; width:55px; height:55px; background:#0066ff; color:white; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:24px; text-decoration:none; box-shadow:0 10px 30px rgba(0,0,0,.3); z-index:999; }


/* Components missing from the original embedded stylesheet */
.card {
    background: #fff;
    padding: 28px;
    border: 1px solid #e4ebf2;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(7, 19, 33, .07);
    transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 20px 55px rgba(7, 19, 33, .12); }
.card h3, .card h4 { margin-bottom: 10px; }
.card p { font-size: 15px; }
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo small { margin-top: 5px; color: #607287; font-size: 9px; letter-spacing: .2em; }
.mobile-toggle { display: none; width: 44px; height: 44px; padding: 9px; background: transparent; border: 0; }
.mobile-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: #1d2939; transition: .2s; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 2000; padding: 10px 15px; color: white; background: #0066ff; border-radius: 6px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.form-status { min-height: 24px; margin-top: 12px; color: #087a5e; font-size: 14px; }
header.scrolled { box-shadow: 0 12px 35px rgba(7, 19, 33, .1); }
details summary { cursor: pointer; }
section[id] { scroll-margin-top: 88px; }

@media (max-width: 1100px) {
    section { padding: 90px 0 !important; }
    [class*="u-"] { max-width: 100%; }
    #process .container > div:last-child { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 992px) {
    nav { height: 76px; }
    .mobile-toggle { display: block; margin-left: auto; }
    .nav-cta { display: none; }
    .menu { position: fixed; inset: 76px 0 auto; display: grid; gap: 0; padding: 16px 5%; background: #fff; border-top: 1px solid #e5eaf0; box-shadow: 0 18px 35px rgba(7,19,33,.12); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .2s; }
    .menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
    .menu a {
        padding: 13px 0;
        border-bottom: 1px solid #edf1f5;
        font-size: 1rem;
        letter-spacing: .01em;
    }
    .hero { padding-top: 125px !important; }
    .hero-grid, .about-grid, #contact .container > div, #rfid .container > div:nth-child(2), #smart-pos .container > div:nth-child(2) { grid-template-columns: 1fr !important; }
    .hero-image { max-width: 720px; }
    .stats, #industries .container > div:last-child { grid-template-columns: repeat(2, 1fr) !important; }
    footer .container > div:first-child { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 700px) {
    .container { width: calc(100% - 30px); }
    section { padding: 72px 0 !important; }
    h1 { font-size: 40px; }
    h2, section h2 { font-size: 32px !important; }
    h3 { font-size: 21px; }
    p { font-size: 16px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    .stats, #process .container > div:last-child, #industries .container > div:last-child { grid-template-columns: 1fr !important; }
    footer .container > div:first-child { grid-template-columns: 1fr !important; }
    #contact form { padding: 25px !important; }
    .hero.hero-premium .container { width: calc(100% - 30px); }
    .hero.hero-premium .hero-image { min-height: 420px; }
    .logo-img { height: 46px; max-width: 180px; }
    .footer-brand-logo { height: 48px; max-width: 200px; }
}

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

/* =========================================================
   AVINYA TYPOGRAPHY SYSTEM
   ========================================================= */

:root {
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --type-display: clamp(3.5rem, 5.8vw, 4.75rem);
    --type-h2: clamp(2.375rem, 4vw, 3.25rem);
    --type-h3: clamp(1.3125rem, 1.7vw, 1.5625rem);
    --type-h4: clamp(1.125rem, 1.3vw, 1.25rem);
    --type-lead: clamp(1.125rem, 1.4vw, 1.3125rem);
    --type-body: clamp(1rem, .94rem + .2vw, 1.125rem);
    --type-small: .9375rem;
    --type-label: .8125rem;
    --text-strong: #101828;
    --text-body: #475467;
    --text-muted: #667085;
    --text-link: #075ccb;
    --text-positive: #087a5e;
    --text-on-dark: #f8fafc;
    --text-on-dark-muted: #c3d0dd;
    --measure-copy: 68ch;
    --measure-lead: 60ch;
    --measure-heading: 22ch;
    --section-space: clamp(5rem, 7.5vw, 7.5rem);
}

html {
    font-size: 100%;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: var(--type-body);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: -.006em;
    color: var(--text-body);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-wrap: break-word;
}

p {
    max-width: var(--measure-copy);
    margin: 0 0 1.25em;
    color: var(--text-body);
    font-size: var(--type-body);
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -.004em;
    text-wrap: pretty;
}

.card p,
.stat p,
p[class*="u-"] {
    font-size: var(--type-body);
    line-height: 1.65;
}

.hero p,
.u-005,
.u-028,
.u-032,
.u-043,
.u-050,
.u-058,
.u-061,
section > .container > p {
    max-width: var(--measure-lead);
    font-size: var(--type-lead) !important;
    line-height: 1.65;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    color: var(--text-strong);
    font-family: var(--font-sans);
    text-wrap: balance;
}

h1 {
    max-width: 18ch;
    margin-bottom: .45em;
    font-size: var(--type-display);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.052em;
}

h2,
h2[class*="u-"] {
    max-width: var(--measure-heading);
    margin-bottom: .5em;
    font-size: var(--type-h2) !important;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.04em;
}

h3,
h3[class*="u-"] {
    margin-bottom: .55em;
    font-size: var(--type-h3);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.025em;
}

h4 {
    margin-bottom: .55em;
    font-size: var(--type-h4);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -.015em;
}

section h2 { margin-inline: auto; }
section h2 + p,
section h2 + br + p { margin-top: 1rem; }
h2 + br,
h3 + br,
p + br { display: none; }

.u-002 > p,
.u-011 > p,
.u-023 > p,
.u-047 > p,
.u-056 > p,
.u-064 > p {
    max-width: 65ch;
    margin-inline: auto;
}

.stat .metric,
.counter {
    display: block;
    max-width: none;
    margin-bottom: .25rem;
    color: #075ccb;
    font-size: clamp(2.25rem, 4vw, 3.25rem) !important;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.05em;
    font-variant-numeric: tabular-nums;
}

.u-066 .metric {
    color: #5ee8c1;
}

ul,
ol {
    margin: 0 0 1.5rem;
    padding-inline-start: 1.35rem;
}

li {
    color: var(--text-body);
    font-size: var(--type-body);
    line-height: 1.65;
}

li + li { margin-top: .5rem; }

a {
    color: inherit;
    font-weight: inherit;
    text-decoration-thickness: .08em;
    text-underline-offset: .18em;
}

p a,
article a {
    color: var(--text-link);
    font-weight: 600;
}

p a:hover,
article a:hover { text-decoration: underline; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(0, 102, 255, .35);
    outline-offset: 3px;
}

.menu a {
    font-size: .96rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: .01em;
}

.logo {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.logo-img {
    display: block;
    width: auto;
    height: 56px;
    max-width: 220px;
}

.badge,
.u-003,
.u-031,
.u-045,
.u-048,
.u-060,
.u-068,
.u-071 {
    color: var(--text-positive) !important;
    font-size: var(--type-label);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.card { text-align: left; }
.card h3 { margin-bottom: .65rem; }
.card h4 { margin-bottom: .5rem; }
.card p:last-child { margin-bottom: 0; }

button,
.btn,
input[type="button"],
input[type="submit"] {
    min-height: 48px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.01em;
}

.btn {
    white-space: normal;
    text-align: center;
}

label {
    display: block;
    margin-bottom: .5rem;
    color: var(--text-strong);
    font-size: var(--type-small);
    font-weight: 600;
    line-height: 1.45;
}

input,
textarea,
select {
    width: 100%;
    color: var(--text-strong);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
}

input { min-height: 48px; }
textarea {
    min-height: 130px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: #667085;
    opacity: 1;
}

.form-status {
    color: var(--text-positive);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

summary {
    color: var(--text-strong);
    font-size: clamp(1.0625rem, 1.4vw, 1.1875rem) !important;
    font-weight: 700;
    line-height: 1.45;
}

.u-013,
.u-035,
.u-085 { color: var(--text-on-dark); }

.u-013 h2,
.u-013 h3,
.u-035 h2,
.u-035 h3,
.u-085 h2,
.u-085 h3 { color: var(--text-on-dark); }

.u-013 p,
.u-035 p,
.u-085 p,
.u-015,
.u-036,
.u-039,
.u-050,
.u-055,
.u-058,
.u-065,
.u-077,
.u-087,
.u-089,
.u-091 { color: var(--text-on-dark-muted) !important; }

footer { font-size: 1rem; }
footer h3 { font-size: 1.125rem; }
footer li,
footer a,
footer p {
    font-size: 1rem;
    line-height: 1.65;
}

section { padding-block: var(--section-space) !important; }
section.u-083 { padding-block: 0 !important; }

.about p,
.hero p,
.card p,
#contact p { max-width: var(--measure-copy); }

@media (max-width: 992px) {
    :root { --section-space: clamp(4.5rem, 9vw, 6rem); }
    h1 { max-width: 20ch; }
    h2 { max-width: 24ch; }
    .menu a {
        font-size: 1rem;
        line-height: 1.4;
    }
}

/* Footer navigation and layout */

.site-footer {
    padding: 0;
    color: #c3d0dd;
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 102, 255, .14), transparent 32%),
        #02111f;
    font-family: var(--font-sans);
}

.site-footer h2,
.site-footer h3 {
    color: #fff;
}

.footer-cta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    padding: 42px 0 38px;
    border-bottom: 1px solid #19344f;
}

.footer-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #5ee8c1;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.footer-cta h2 {
    max-width: 680px;
    margin: 0;
    font-size: clamp(2rem, 3vw, 3rem) !important;
    line-height: 1.12;
    letter-spacing: -.05em;
    font-weight: 800;
}

.footer-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: 12px;
    min-height: 52px;
    padding: 0 22px;
    color: #fff;
    background: linear-gradient(135deg, #1e88ff, #156fe6);
    border: 1px solid rgba(30, 136, 255, .85);
    border-radius: 9px;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(30, 136, 255, .22);
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.footer-cta-link:hover {
    color: #fff;
    background: linear-gradient(135deg, #156fe6, #00c37a);
    box-shadow: 0 17px 36px rgba(0, 195, 122, .22);
    transform: translateY(-2px);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.15fr);
    gap: clamp(28px, 3.8vw, 48px);
    padding: 44px 0 38px;
    align-items: start;
}

.footer-intro p {
    max-width: 36ch;
    margin: 16px 0 14px;
    color: #9db0c2;
    font-size: .92rem;
    line-height: 1.7;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    line-height: 1;
}

.footer-brand-logo {
    display: block;
    width: auto;
    height: 58px;
    max-width: 240px;
}

.footer-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d9e4ee;
    font-size: .86rem;
    font-weight: 600;
    margin-top: 2px;
}

.footer-grid h3 {
    margin: 0 0 16px;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.footer-nav li,
.footer-nav li + li {
    margin: 0;
}

.footer-nav a,
.footer-contact a {
    display: inline-block;
    padding: 3px 0;
    color: #9db0c2;
    font-size: .88rem;
    line-height: 1.55;
    transition: color .2s ease, transform .2s ease;
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-location:hover,
.footer-bottom a:hover {
    color: #fff;
}

.footer-nav a:hover {
    transform: translateX(3px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    justify-content: flex-start;
}

.footer-contact > span {
    margin-top: 10px;
    color: #6f879c;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-contact .footer-email {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.footer-whatsapp {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin-top: 17px;
    padding: 9px 14px !important;
    color: #fff !important;
    background: rgba(37, 211, 102, .12);
    border: 1px solid rgba(37, 211, 102, .3);
    border-radius: 8px;
}

.whatsapp-icon {
    display: block;
    flex: 0 0 auto;
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.whatsapp-float {
    color: #fff;
    background: #25d366;
}

.whatsapp-float .whatsapp-icon {
    width: 34px;
    height: 34px;
}

.whatsapp-float:hover {
    background: #1ebc59;
    transform: translateY(-3px) scale(1.04);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 0 18px;
    border-top: 1px solid #19344f;
}

.footer-bottom p {
    margin: 0;
    color: #7890a5;
    font-size: .78rem;
}

.footer-bottom nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom a {
    color: #8fa4b7;
    font-size: .78rem;
    font-weight: 600;
}

.u-035 p a {
    color: #f8fafc;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, .35);
}

.u-035 p a:hover {
    text-decoration-color: #fff;
}

@media (max-width: 950px) {
    .footer-cta {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 26px 28px;
        padding: 38px 0 32px;
    }

    .footer-intro,
    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-nav {
        min-width: 0;
    }

    .footer-bottom {
        padding: 20px 0 14px;
    }
}

@media (max-width: 680px) {
    .footer-cta {
        padding: 34px 0 30px;
    }

    .footer-cta-link {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        padding: 30px 0 24px;
        gap: 22px;
    }

    .footer-intro,
    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-intro p {
        max-width: 100%;
    }

    .footer-brand {
        gap: 10px;
    }

    .footer-nav h3,
    .footer-contact > span {
        margin-bottom: 12px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 430px) {
    .footer-intro,
    .footer-contact {
        grid-column: auto;
    }

    .footer-grid {
        gap: 20px;
        padding: 26px 0 22px;
    }

    .footer-cta {
        gap: 16px;
    }

    .footer-bottom nav {
        gap: 16px;
    }
}

/* RFID warehouse showcase */

.rfid-showcase {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 15%, rgba(0, 102, 255, .08), transparent 26%),
        linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
}

.rfid-showcase::before {
    content: "";
    position: absolute;
    top: 0;
    right: -180px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(0, 102, 255, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(0, 102, 255, .025), 0 0 0 140px rgba(0, 102, 255, .018);
    pointer-events: none;
}

.rfid-showcase > .container {
    position: relative;
    z-index: 1;
}

.rfid-showcase-heading {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    align-items: end;
    gap: clamp(45px, 7vw, 95px);
    margin-bottom: 58px;
}

.rfid-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #075ccb;
    font-size: .78rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.rfid-kicker > span {
    width: 27px;
    height: 2px;
    background: #00a87a;
}

.rfid-showcase h2 {
    max-width: 18ch;
    margin: 0;
}

.rfid-intro > p {
    max-width: 56ch;
    margin-bottom: 28px;
    font-size: clamp(1.0625rem, 1.25vw, 1.1875rem);
    line-height: 1.7;
}

.rfid-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}

.rfid-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #075ccb;
    font-size: .92rem;
    font-weight: 700;
}

.rfid-text-link span {
    transition: transform .2s ease;
}

.rfid-text-link:hover span {
    transform: translateY(3px);
}

.rfid-showcase-grid {
    display: grid;
    grid-template-columns: 1.06fr .94fr;
    gap: 22px;
}

.rfid-visual {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    background: #0d2945;
    border: 8px solid #fff;
    border-radius: 25px;
    box-shadow: 0 28px 70px rgba(7, 26, 46, .16);
}

.rfid-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 26, 46, .04) 45%, rgba(7, 26, 46, .55));
    pointer-events: none;
}

.rfid-visual > img {
    width: 100%;
    height: 100%;
    min-height: 610px;
    object-fit: cover;
}

.rfid-live-status,
.rfid-scan-status {
    position: absolute;
    z-index: 2;
    color: #101828;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(255, 255, 255, .8);
    box-shadow: 0 18px 42px rgba(7, 26, 46, .2);
    backdrop-filter: blur(12px);
}

.rfid-live-status {
    top: 22px;
    right: 22px;
    width: 174px;
    padding: 18px;
    border-radius: 15px;
}

.rfid-live-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 17px;
    color: #667085;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.rfid-live-label span {
    width: 8px;
    height: 8px;
    background: #00a87a;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(0, 168, 122, .12);
}

.rfid-live-status > strong,
.rfid-live-status > small {
    display: block;
}

.rfid-live-status > strong {
    margin-bottom: 4px;
    color: #075ccb;
    font-size: 2.25rem;
    line-height: 1;
    letter-spacing: -.05em;
}

.rfid-live-status > small {
    color: #667085;
    font-size: .72rem;
}

.rfid-scan-status {
    bottom: 22px;
    left: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-radius: 13px;
}

.rfid-scan-status svg {
    width: 31px;
    height: 31px;
    padding: 6px;
    color: #fff;
    background: #075ccb;
    border-radius: 8px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.rfid-scan-status strong,
.rfid-scan-status span {
    display: block;
}

.rfid-scan-status strong {
    font-size: .85rem;
}

.rfid-scan-status span {
    color: #667085;
    font-size: .68rem;
}

.rfid-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.rfid-feature-card {
    position: relative;
    min-height: 292px;
    padding: 29px;
    overflow: hidden;
    background: rgba(255, 255, 255, .92);
    border-color: #dce7f1;
    box-shadow: none;
}

.rfid-feature-card::after {
    content: "";
    position: absolute;
    right: -35px;
    bottom: -35px;
    width: 90px;
    height: 90px;
    background: rgba(0, 102, 255, .035);
    border-radius: 50%;
}

.rfid-feature-card:hover {
    border-color: #b9d0e5;
    box-shadow: 0 22px 50px rgba(7, 26, 46, .1);
}

.rfid-feature-card .card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 38px;
}

.rfid-feature-card .card-icon svg {
    width: 24px;
    height: 24px;
}

.rfid-feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.12rem;
}

.rfid-feature-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: .9rem;
    line-height: 1.65;
}

.rfid-feature-number {
    position: absolute;
    top: 21px;
    right: 23px;
    color: #aac0d5;
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .1em;
}

.rfid-flow-preview {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    align-items: center;
    gap: 45px;
    margin-top: 22px;
    padding: 28px 32px;
    color: #fff;
    background: #071a2e;
    border-radius: 18px;
}

.rfid-flow-label span,
.rfid-flow-label strong {
    display: block;
}

.rfid-flow-label span {
    margin-bottom: 4px;
    color: #5ee8c1;
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.rfid-flow-label strong {
    color: #fff;
    font-size: .95rem;
}

.rfid-flow-preview ol {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rfid-flow-preview li {
    position: relative;
    margin: 0;
    color: #d8e3ed;
    font-size: .75rem;
    font-weight: 700;
    text-align: center;
}

.rfid-flow-preview li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 8px;
    left: calc(50% + 14px);
    width: calc(100% - 28px);
    height: 1px;
    background: #2d465e;
}

.rfid-flow-preview li > span {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    margin: 0 auto 8px;
    color: #fff;
    background: #075ccb;
    border-radius: 50%;
    font-size: .54rem;
}

@media (max-width: 1050px) {
    .rfid-showcase-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .rfid-showcase-grid {
        grid-template-columns: 1fr;
    }

    .rfid-visual,
    .rfid-visual > img {
        min-height: 520px;
    }

    .rfid-feature-card {
        min-height: 245px;
    }
}

@media (max-width: 760px) {
    .rfid-feature-grid {
        grid-template-columns: 1fr;
    }

    .rfid-feature-card {
        min-height: 0;
    }

    .rfid-feature-card .card-icon {
        margin-bottom: 24px;
    }

    .rfid-flow-preview {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 540px) {
    .rfid-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .rfid-text-link {
        justify-content: center;
    }

    .rfid-visual,
    .rfid-visual > img {
        min-height: 440px;
    }

    .rfid-live-status {
        top: 14px;
        right: 14px;
        width: 153px;
        padding: 15px;
    }

    .rfid-scan-status {
        bottom: 14px;
        left: 14px;
    }

    .rfid-flow-preview {
        padding: 25px 20px;
    }

    .rfid-flow-preview ol {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 10px;
    }

    .rfid-flow-preview li:not(:last-child)::after {
        display: none;
    }
}

/* RFID business benefits showcase */

.benefits-showcase {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.benefits-showcase::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -160px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0, 168, 122, .07), transparent 68%);
    pointer-events: none;
}

.benefits-showcase > .container {
    position: relative;
    z-index: 1;
}

.benefits-heading {
    display: grid;
    grid-template-columns: 1fr .82fr;
    align-items: end;
    gap: clamp(45px, 7vw, 95px);
    margin-bottom: 55px;
}

.benefits-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 19px;
    color: #087a5e;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.benefits-kicker > span {
    width: 27px;
    height: 2px;
    background: #075ccb;
}

.benefits-heading h2 {
    margin: 0;
}

.benefits-heading > p {
    max-width: 55ch;
    margin: 0 0 5px;
    font-size: clamp(1.0625rem, 1.25vw, 1.1875rem);
    line-height: 1.7;
}

.benefits-layout {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 20px;
}

.benefit-featured {
    position: relative;
    min-height: 590px;
    padding: clamp(32px, 4vw, 48px);
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0%, rgba(0, 168, 122, .26), transparent 34%),
        linear-gradient(145deg, #071a2e, #0d2945);
    border-radius: 22px;
    box-shadow: 0 25px 65px rgba(7, 26, 46, .18);
}

.benefit-featured::after {
    content: "";
    position: absolute;
    right: -75px;
    bottom: -75px;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 45px rgba(255, 255, 255, .025), 0 0 0 90px rgba(255, 255, 255, .015);
}

.benefit-featured-top,
.benefit-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.benefit-featured-top {
    margin-bottom: 54px;
}

.benefit-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #075ccb;
    background: #edf4ff;
    border: 1px solid #d9e6f2;
    border-radius: 13px;
}

.benefit-icon-light {
    color: #fff;
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .16);
}

.benefit-icon svg,
.benefits-savings-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b9ccdc;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.benefit-status i {
    width: 8px;
    height: 8px;
    background: #5ee8c1;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(94, 232, 193, .12);
}

.benefit-big-number {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 12px;
    color: #5ee8c1;
    font-size: clamp(4.5rem, 8vw, 7rem);
    font-weight: 800;
    line-height: .92;
    letter-spacing: -.075em;
}

.benefit-featured h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 17px;
    color: #fff;
    font-size: clamp(1.45rem, 2vw, 1.8rem);
}

.benefit-featured > p {
    position: relative;
    z-index: 1;
    max-width: 42ch;
    color: #b9c9d7;
    font-size: .98rem;
    line-height: 1.7;
}

.benefit-featured ul {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    margin: 31px 0 0;
    padding: 0;
    list-style: none;
}

.benefit-featured li,
.benefit-featured li + li {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0;
    color: #d8e2eb;
    font-size: .82rem;
}

.benefit-featured li span {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 21px;
    height: 21px;
    color: #071a2e;
    background: #5ee8c1;
    border-radius: 50%;
    font-size: .65rem;
    font-weight: 900;
}

.benefit-metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.benefit-metric-card {
    position: relative;
    min-height: 285px;
    padding: 28px;
    overflow: hidden;
    background: #f8fbfd;
    border: 1px solid #dce7f0;
    border-radius: 19px;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.benefit-metric-card:hover {
    border-color: #bcd1e3;
    box-shadow: 0 20px 45px rgba(7, 26, 46, .09);
    transform: translateY(-4px);
}

.benefit-card-top {
    margin-bottom: 32px;
}

.benefit-trend {
    padding: 6px 9px;
    color: #087a5e;
    background: #e5f8f1;
    border-radius: 20px;
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.benefit-trend-down {
    color: #075ccb;
    background: #e9f1ff;
}

.benefit-metric-card > strong {
    display: block;
    margin-bottom: 10px;
    color: #075ccb;
    font-size: clamp(2.5rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: .95;
    letter-spacing: -.06em;
}

.benefit-metric-card h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.benefit-metric-card p {
    margin: 0;
    font-size: .84rem;
    line-height: 1.65;
}

.benefits-savings-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding: 24px 28px;
    background: #edf6ff;
    border: 1px solid #d3e5f4;
    border-radius: 17px;
}

.benefits-savings-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #fff;
    background: linear-gradient(145deg, #075ccb, #00a87a);
    border-radius: 13px;
}

.benefits-savings-bar > div:nth-child(2) span,
.benefits-savings-bar > div:nth-child(2) strong {
    display: block;
}

.benefits-savings-bar > div:nth-child(2) span {
    margin-bottom: 3px;
    color: #075ccb;
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.benefits-savings-bar > div:nth-child(2) strong {
    color: #24364b;
    font-size: .92rem;
}

.benefits-savings-bar > a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #075ccb;
    font-size: .82rem;
    font-weight: 700;
}

.benefits-savings-bar > a:hover span {
    transform: translateX(3px);
}

.benefits-savings-bar > a span {
    transition: transform .2s ease;
}

@media (max-width: 1020px) {
    .benefits-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
    }

    .benefit-featured {
        min-height: 520px;
    }
}

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

    .benefit-featured {
        min-height: 0;
    }

    .benefit-metric-card {
        min-height: 0;
    }

    .benefits-savings-bar {
        grid-template-columns: auto 1fr;
    }

    .benefits-savings-bar > a {
        grid-column: 1 / -1;
        justify-content: center;
        min-height: 44px;
        padding: 0 15px;
        background: #fff;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .benefit-featured,
    .benefit-metric-card {
        padding: 25px;
    }

    .benefit-featured-top {
        margin-bottom: 42px;
    }

    .benefits-savings-bar {
        grid-template-columns: 1fr;
        padding: 23px;
    }

    .benefits-savings-bar > a {
        grid-column: auto;
    }
}

@media (max-width: 700px) {
    :root {
        --type-display: clamp(2.5rem, 11vw, 3.25rem);
        --type-h2: clamp(1.875rem, 8vw, 2.375rem);
        --type-h3: clamp(1.25rem, 5.5vw, 1.4375rem);
        --type-h4: 1.125rem;
        --type-lead: 1.125rem;
        --type-body: 1rem;
        --section-space: clamp(4rem, 14vw, 5rem);
    }

    body {
        font-size: 1rem;
        line-height: 1.65;
    }

    h1 {
        max-width: none;
        line-height: 1.08;
        letter-spacing: -.042em;
    }

    h2,
    h2[class*="u-"] {
        max-width: none;
        line-height: 1.15;
        letter-spacing: -.032em;
    }

    h3 { line-height: 1.28; }

    p,
    .card p,
    p[class*="u-"] {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.68;
    }

    .hero { text-align: left; }
    .hero p { font-size: 1.0625rem !important; }
    .stat .metric,
    .counter { font-size: 2.5rem !important; }

    button,
    .btn,
    input,
    textarea,
    select { font-size: 1rem; }
}

@media (max-width: 420px) {
    :root {
        --type-display: clamp(2.25rem, 11vw, 2.75rem);
        --type-h2: clamp(1.75rem, 8vw, 2.125rem);
    }

    h1,
    h2,
    h3,
    h4,
    p,
    li,
    a,
    button { overflow-wrap: anywhere; }

    .btn { width: 100%; }
}

/* Warehouse Process Flow refinement */
.process-showcase {
    background:
        radial-gradient(circle at top right, rgba(0, 199, 140, .12), transparent 28%),
        radial-gradient(circle at left center, rgba(0, 102, 255, .16), transparent 30%),
        linear-gradient(180deg, #071321 0%, #0b1d30 100%);
    color: #fff;
}

.process-showcase .u-011 {
    max-width: 840px;
    margin-inline: auto 0;
    text-align: left;
}

.process-showcase .u-016 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
    margin-top: 22px;
}

.process-showcase .u-017 {
    position: relative;
    min-height: 260px;
    padding: 28px 24px 24px;
    text-align: left;
    background:
        linear-gradient(180deg, rgba(13, 34, 56, .92), rgba(8, 21, 36, .98));
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
    overflow: hidden;
}

.process-showcase .u-017::before {
    position: absolute;
    top: 22px;
    right: 22px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #fff;
    background: linear-gradient(145deg, #0066ff, #00c37a);
    border-radius: 999px;
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .08em;
    box-shadow: 0 16px 30px rgba(0, 102, 255, .24);
}

.process-showcase .u-017:nth-child(1)::before { content: "01"; }
.process-showcase .u-017:nth-child(3)::before { content: "02"; }
.process-showcase .u-017:nth-child(5)::before { content: "03"; }
.process-showcase .u-017:nth-child(7)::before { content: "04"; }

.process-showcase .u-017::after {
    position: absolute;
    inset: auto 24px 22px 24px;
    color: #cbd6e2;
    font-size: .96rem;
    line-height: 1.7;
}

.process-showcase .u-017:nth-child(1)::after { content: "Inbound verification and dock receiving with RFID capture."; }
.process-showcase .u-017:nth-child(3)::after { content: "Organized storage with location awareness and batch control."; }
.process-showcase .u-017:nth-child(5)::after { content: "Continuous tracking across aisles, racks, and stock movement."; }
.process-showcase .u-017:nth-child(7)::after { content: "Fast outbound confirmation before items leave the warehouse."; }

.process-showcase .u-017 .u-018,
.process-showcase .u-017 .u-021,
.process-showcase .u-020 {
    display: none;
}

.process-showcase .u-019 {
    margin: 58px 0 72px;
    color: #fff;
    font-size: 1.18rem;
    line-height: 1.35;
}

.process-showcase .u-017:nth-child(1) { border-top: 1px solid rgba(0, 102, 255, .35); }
.process-showcase .u-017:nth-child(3) { border-top: 1px solid rgba(0, 199, 140, .35); }
.process-showcase .u-017:nth-child(5) { border-top: 1px solid rgba(0, 102, 255, .35); }
.process-showcase .u-017:nth-child(7) { border-top: 1px solid rgba(0, 199, 140, .35); }

.process-showcase .u-017:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 72px rgba(0, 0, 0, .3);
}

@media (max-width: 1100px) {
    .process-showcase .u-016 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .process-showcase .u-016 {
        grid-template-columns: 1fr;
    }

    .process-showcase .u-017 {
        min-height: 220px;
    }

    .process-showcase .u-019 {
        margin-bottom: 58px;
    }
}

@media (prefers-contrast: more) {
    :root {
        --text-body: #344054;
        --text-muted: #475467;
        --text-link: #004fc4;
        --text-on-dark-muted: #e2e8f0;
    }
}

/* Self-contained card icon system */

.card-icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    margin: 0 0 1.35rem;
    color: #075ccb;
    background: linear-gradient(145deg, #edf4ff, #e6f8f3);
    border: 1px solid #d7e6f5;
    border-radius: 15px;
    box-shadow: 0 10px 24px rgba(7, 92, 203, .09);
}

.card-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card:hover .card-icon,
.u-009:hover .card-icon {
    color: #fff;
    background: linear-gradient(145deg, #075ccb, #087a5e);
    border-color: transparent;
    box-shadow: 0 14px 28px rgba(7, 92, 203, .2);
    transform: translateY(-2px);
}

.card-icon {
    transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.card.u-026 .card-icon {
    margin-inline: auto;
}

.u-038 .card-icon {
    color: #5ee8c1;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .14);
    box-shadow: none;
}

.card > .u-046,
.card > .u-063 {
    display: none;
}

.u-009 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 700px) {
    .card-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 1.1rem;
    }

    .card-icon svg {
        width: 25px;
        height: 25px;
    }
}

/* Premium section rebuilds */

section.process-showcase,
section.technology-stack-showcase,
section.smart-pos-showcase,
section.management-features-showcase,
section.roles-showcase,
section.audience-showcase,
section.why-smart-pos-showcase,
section.industry-showcase,
section.why-avinya-showcase,
section.delivery-showcase,
section.impact-showcase,
section.ecosystem-showcase,
section.advantages-showcase,
section.testimonials-showcase,
section.faq-showcase,
section.contact-showcase {
    position: relative;
    overflow: hidden;
}

section.process-showcase,
section.smart-pos-showcase,
section.industry-showcase,
section.ecosystem-showcase,
section.advantages-showcase,
section.testimonials-showcase,
section.faq-showcase,
section.contact-showcase {
    padding-block: clamp(5rem, 7.5vw, 7rem) !important;
}

section.technology-stack-showcase,
section.management-features-showcase,
section.roles-showcase,
section.audience-showcase,
section.why-smart-pos-showcase,
section.why-avinya-showcase,
section.delivery-showcase,
section.impact-showcase {
    padding-block: clamp(5.25rem, 7.8vw, 7.25rem) !important;
}

.process-showcase {
    background:
        radial-gradient(circle at top right, rgba(0, 199, 140, .12), transparent 34%),
        radial-gradient(circle at left center, rgba(0, 102, 255, .18), transparent 30%),
        linear-gradient(180deg, #071321 0%, #0a1726 100%);
    color: #fff;
}

.process-showcase .u-011 {
    max-width: 820px;
    margin-inline: auto;
}

.process-showcase .u-016 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.process-showcase .process-step {
    position: relative;
    min-height: 250px;
    padding: 28px 24px 24px;
    text-align: left;
    background:
        linear-gradient(180deg, rgba(13, 34, 56, .82), rgba(8, 21, 36, .94));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.process-showcase .process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}

.process-showcase .process-step::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066ff, #00c37a);
}

.process-showcase .u-017:nth-child(1)::after { content: "01"; }
.process-showcase .u-017:nth-child(3)::after { content: "02"; }
.process-showcase .u-017:nth-child(5)::after { content: "03"; }
.process-showcase .u-017:nth-child(7)::after { content: "04"; }

.process-showcase .process-step::after {
    position: absolute;
    top: 20px;
    right: 22px;
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.process-showcase .process-step .card-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 26px;
}

.process-showcase .process-step .card-icon svg {
    width: 25px;
    height: 25px;
}

.process-showcase .process-step h3 {
    margin: 0;
    padding-right: 60px;
    color: #fff;
    font-size: 1.12rem;
    line-height: 1.35;
}

.process-showcase .process-step p {
    margin-top: 12px;
    color: var(--text-on-dark-muted);
    line-height: 1.7;
}

.process-showcase .process-step .u-018,
.process-showcase .process-step .u-021 {
    display: none;
}

.process-showcase .process-arrow {
    display: none;
}

.process-showcase .u-017:nth-child(1),
.process-showcase .u-017:nth-child(3),
.process-showcase .u-017:nth-child(5),
.process-showcase .u-017:nth-child(7) {
    background: linear-gradient(180deg, rgba(13, 34, 56, .82), rgba(8, 21, 36, .94));
}

.process-showcase .u-017::after {
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.technology-stack-showcase {
    background:
        radial-gradient(circle at 12% 12%, rgba(30, 136, 255, .12), transparent 24%),
        radial-gradient(circle at 88% 18%, rgba(0, 229, 195, .10), transparent 22%),
        linear-gradient(180deg, #f6fbff 0%, #edf4fb 100%);
}

.technology-stack-showcase .u-023 {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
}

.technology-stack-showcase .u-023 h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(2.6rem, 4.4vw, 4.1rem);
    line-height: .98;
    letter-spacing: -.05em;
}

.technology-stack-showcase .u-023 p {
    max-width: 60ch;
    margin: 18px auto 0;
    color: #5b6b84;
    font-size: clamp(1rem, 1.12vw, 1.08rem);
    line-height: 1.76;
}

.technology-stack-showcase .u-024 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.technology-stack-showcase .card {
    position: relative;
    min-height: 230px;
    padding: 30px 28px 26px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .88));
    border: 1px solid rgba(15, 23, 42, .06);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .08);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.technology-stack-showcase .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(15, 23, 42, .12);
    border-color: rgba(30, 136, 255, .16);
}

.technology-stack-showcase .card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(30, 136, 255, .08), transparent 28%),
        radial-gradient(circle at bottom left, rgba(0, 229, 195, .08), transparent 26%);
    opacity: .8;
    pointer-events: none;
}

.technology-stack-showcase .card-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(30, 136, 255, .10), rgba(0, 229, 195, .10));
    border-color: rgba(30, 136, 255, .12);
    box-shadow: 0 12px 28px rgba(30, 136, 255, .08);
}

.technology-stack-showcase .card-icon svg {
    width: 24px;
    height: 24px;
}

.technology-stack-showcase .card h3 {
    position: relative;
    margin-bottom: 12px;
    color: #0f172a;
    font-size: 1.15rem;
    line-height: 1.3;
    letter-spacing: -.02em;
    font-weight: 700;
}

.technology-stack-showcase .card p {
    position: relative;
    margin: 0;
    color: #5b6b84;
    font-size: .98rem;
    line-height: 1.7;
}

/* Warehouse CTA */
.warehouse-cta-showcase {
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 7.5vw, 7rem) 0;
    color: #fff;
    background:
        radial-gradient(circle at 14% 20%, rgba(30, 136, 255, .22), transparent 22%),
        radial-gradient(circle at 82% 16%, rgba(0, 229, 195, .18), transparent 20%),
        radial-gradient(circle at 52% 88%, rgba(255, 255, 255, .08), transparent 24%),
        linear-gradient(135deg, #06101d 0%, #071827 52%, #091f30 100%);
}

.warehouse-cta-showcase::before,
.warehouse-cta-showcase::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.warehouse-cta-showcase::before {
    top: -120px;
    right: -150px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(30, 136, 255, .16), transparent 66%);
}

.warehouse-cta-showcase::after {
    left: -130px;
    bottom: -160px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(0, 229, 195, .12), transparent 68%);
}

.warehouse-cta-showcase .container.u-026 {
    position: relative;
    z-index: 1;
    max-width: 980px;
    padding: clamp(2.25rem, 4vw, 3.5rem);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(20, 32, 52, .78), rgba(10, 24, 38, .9));
    box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
    backdrop-filter: blur(16px);
}

.warehouse-cta-showcase .container.u-026::before {
    content: "";
    position: absolute;
    inset: 18px 18px auto auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 0 0 26px rgba(30, 136, 255, .05), 0 0 0 56px rgba(0, 229, 195, .03);
    pointer-events: none;
}

.warehouse-cta-showcase .u-027 {
    max-width: 14ch;
    margin-inline: auto;
    font-size: clamp(2.7rem, 5vw, 4.7rem);
    line-height: .98;
    letter-spacing: -.055em;
}

.warehouse-cta-showcase .u-028 {
    max-width: 64ch;
    margin: 22px auto 0;
    color: #a8b3c7;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.8;
}

.warehouse-cta-showcase .u-029 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 210px;
    margin-top: 34px;
    padding: 18px 34px;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .02em;
    background: linear-gradient(135deg, #1E88FF, #00E5C3);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    box-shadow: 0 18px 34px rgba(30, 136, 255, .24);
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.warehouse-cta-showcase .u-029:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 42px rgba(0, 229, 195, .22);
    filter: saturate(1.04);
}

.warehouse-cta-showcase .u-029::after {
    content: "→";
    font-size: 1.05em;
    line-height: 1;
}

@media (max-width: 760px) {
    .warehouse-cta-showcase .container.u-026 {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .warehouse-cta-showcase .u-027 {
        max-width: none;
    }

    .warehouse-cta-showcase .u-029 {
        width: 100%;
        min-width: 0;
    }
}

.smart-pos-showcase {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 10%, rgba(30, 136, 255, .16), transparent 24%),
        radial-gradient(circle at 88% 18%, rgba(0, 229, 195, .12), transparent 22%),
        linear-gradient(180deg, #f7fbff 0%, #edf5fc 100%);
}

.smart-pos-showcase::before,
.smart-pos-showcase::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.smart-pos-showcase::before {
    top: -120px;
    right: -130px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(30, 136, 255, .08), transparent 68%);
}

.smart-pos-showcase::after {
    left: -120px;
    bottom: -160px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(0, 229, 195, .06), transparent 70%);
}

.smart-pos-showcase .u-002 {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
}

.smart-pos-showcase .u-031 {
    padding: 11px 22px;
    color: #1e88ff;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(30, 136, 255, .12);
    box-shadow: 0 14px 32px rgba(30, 136, 255, .08);
    letter-spacing: .14em;
    text-transform: uppercase;
}

.smart-pos-showcase .u-004 {
    margin-top: 22px;
    color: #0f172a;
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    line-height: .98;
    letter-spacing: -.06em;
}

.smart-pos-showcase .u-032 {
    max-width: 62ch;
    margin: 18px auto 0;
    color: #53647a;
    font-size: clamp(1rem, 1.18vw, 1.08rem);
    line-height: 1.78;
}

.smart-pos-showcase .u-006 {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 24px;
    align-items: center;
}

.smart-pos-showcase .u-006 > div:first-child {
    position: relative;
    padding: 16px;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .70));
    box-shadow: 0 26px 66px rgba(15, 23, 42, .12);
    backdrop-filter: blur(14px);
}

.smart-pos-showcase .u-006 > div:first-child::before,
.smart-pos-showcase .u-006 > div:first-child::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}

.smart-pos-showcase .u-006 > div:first-child::before {
    top: 22px;
    left: 22px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(30, 136, 255, .10);
    box-shadow: 0 0 0 26px rgba(30, 136, 255, .05), 0 0 0 56px rgba(0, 229, 195, .03);
}

.smart-pos-showcase .u-006 > div:first-child::after {
    right: 22px;
    bottom: 22px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(0, 229, 195, .08), transparent 68%);
}

.smart-pos-showcase .u-007 {
    position: relative;
    z-index: 1;
    min-height: 620px;
    border-radius: 26px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .55);
    box-shadow: 0 28px 80px rgba(15, 23, 42, .16);
}

.smart-pos-showcase .u-006 > div:last-child {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.smart-pos-showcase .pos-feature-card {
    position: relative;
    min-height: 100%;
    padding: 28px 24px 24px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .88));
    border: 1px solid rgba(15, 23, 42, .06);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.smart-pos-showcase .u-033 {
    margin-bottom: 0;
}

.smart-pos-showcase .pos-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(30, 136, 255, .16);
    box-shadow: 0 26px 56px rgba(15, 23, 42, .12);
}

.smart-pos-showcase .pos-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(30, 136, 255, .08), transparent 28%),
        radial-gradient(circle at bottom left, rgba(0, 229, 195, .08), transparent 26%);
    pointer-events: none;
}

.smart-pos-showcase .pos-feature-card h3 {
    position: relative;
    margin-bottom: 12px;
    color: #0f172a;
    font-size: 1.14rem;
    line-height: 1.3;
    letter-spacing: -.02em;
    font-weight: 700;
}

.smart-pos-showcase .pos-feature-card p {
    position: relative;
    margin: 0;
    color: #55657b;
    font-size: .98rem;
    line-height: 1.74;
}

.smart-pos-showcase .card-icon {
    position: relative;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(30, 136, 255, .10), rgba(0, 229, 195, .10));
    border-color: rgba(30, 136, 255, .12);
    box-shadow: 0 12px 28px rgba(30, 136, 255, .08);
}

.smart-pos-showcase .card-icon svg {
    width: 24px;
    height: 24px;
}

.smart-pos-showcase .card:nth-child(1) .card-icon,
.smart-pos-showcase .card:nth-child(2) .card-icon,
.smart-pos-showcase .card:nth-child(3) .card-icon,
.smart-pos-showcase .card:nth-child(4) .card-icon {
    margin-top: 0;
}

.management-features-showcase {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 10%, rgba(30, 136, 255, .08), transparent 22%),
        radial-gradient(circle at 90% 16%, rgba(0, 229, 195, .08), transparent 20%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    color: #0f172a;
}

.management-features-showcase::before,
.management-features-showcase::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.management-features-showcase::before {
    top: -140px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(30, 136, 255, .05), transparent 68%);
}

.management-features-showcase::after {
    left: -140px;
    bottom: -180px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 229, 195, .05), transparent 70%);
}

.management-features-showcase .u-011 {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
}

.management-features-showcase .u-011 h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(2.7rem, 4.8vw, 4.5rem);
    line-height: .98;
    letter-spacing: -.055em;
}

.management-features-showcase .u-011 p {
    max-width: 62ch;
    margin: 18px auto 0;
    color: #5b6b84;
    font-size: clamp(1rem, 1.15vw, 1.08rem);
    line-height: 1.76;
}

.management-features-showcase .u-024 {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.management-features-showcase .card {
    position: relative;
    min-height: 190px;
    padding: 30px 28px 26px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .97), rgba(255, 255, 255, .91));
    border: 1px solid rgba(15, 23, 42, .06);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.management-features-showcase .card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(30, 136, 255, .08), transparent 28%),
        radial-gradient(circle at bottom left, rgba(0, 229, 195, .06), transparent 26%);
    pointer-events: none;
}

.management-features-showcase .card::after {
    content: "";
    position: absolute;
    inset: auto -34px -34px auto;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 136, 255, .05), transparent 68%);
    pointer-events: none;
}

.management-features-showcase .card:hover {
    transform: translateY(-6px);
    border-color: rgba(30, 136, 255, .16);
    box-shadow: 0 26px 60px rgba(15, 23, 42, .12);
}

.management-features-showcase .card-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(30, 136, 255, .10), rgba(0, 229, 195, .08));
    border-color: rgba(30, 136, 255, .12);
    box-shadow: 0 12px 28px rgba(30, 136, 255, .08);
}

.management-features-showcase .card-icon svg {
    width: 24px;
    height: 24px;
}

.management-features-showcase .card h3 {
    position: relative;
    margin-bottom: 12px;
    color: #0f172a;
    font-size: 1.14rem;
    line-height: 1.32;
    letter-spacing: -.02em;
    font-weight: 700;
}

.management-features-showcase .card p {
    position: relative;
    margin: 0;
    color: #55657b;
    font-size: .98rem;
    line-height: 1.72;
}

.management-features-showcase .card-icon svg {
    width: 24px;
    height: 24px;
}

.roles-showcase {
    background:
        radial-gradient(circle at top right, rgba(94, 232, 193, .08), transparent 28%),
        linear-gradient(180deg, #071321 0%, #0b1d30 100%);
    color: #fff;
}

.roles-showcase .u-011 {
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
}

.roles-showcase .u-037 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.roles-showcase .role-card {
    min-height: 210px;
    padding: 30px 26px;
    border-radius: 24px;
    background: rgba(16, 40, 63, .96);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .2);
}

.roles-showcase .role-card:hover {
    transform: translateY(-4px);
}

.audience-showcase {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.audience-showcase .u-011 {
    max-width: 760px;
    margin-inline: auto;
}

.audience-showcase .u-012 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.audience-showcase .audience-card {
    min-height: 190px;
    padding: 28px 24px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #dce7f1;
    box-shadow: 0 18px 40px rgba(9, 30, 66, .08);
}

.why-smart-pos-showcase {
    background:
        radial-gradient(circle at top left, rgba(0, 102, 255, .08), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.why-smart-pos-showcase .u-011 {
    max-width: 760px;
    margin-inline: auto;
}

.why-smart-pos-showcase .u-042 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.why-smart-pos-showcase .why-pos-card {
    min-height: 188px;
    padding: 28px 24px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #dce7f1;
    box-shadow: 0 18px 40px rgba(9, 30, 66, .08);
}

.industry-showcase {
    background:
        radial-gradient(circle at 15% 10%, rgba(0, 199, 140, .08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.industry-showcase .u-002 {
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
}

.industry-showcase .u-037 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.industry-showcase .industry-card {
    min-height: 210px;
    padding: 28px 24px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #dce7f1;
    box-shadow: 0 18px 40px rgba(9, 30, 66, .08);
}

.why-avinya-showcase {
    background:
        radial-gradient(circle at top right, rgba(94, 232, 193, .08), transparent 28%),
        linear-gradient(180deg, #071321 0%, #0b1d30 100%);
    color: #fff;
}

.why-avinya-showcase .u-047 {
    max-width: 860px;
    margin-inline: auto;
}

.why-avinya-showcase .u-051 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.why-avinya-showcase .reason-card {
    min-height: 210px;
    padding: 30px 26px;
    border-radius: 24px;
    background: rgba(16, 40, 63, .96);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .2);
}

.why-avinya-showcase .u-053 {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    font-size: 1.7rem;
    background: rgba(255, 255, 255, .08);
    border-radius: 16px;
}

.why-avinya-showcase .u-054 {
    margin-top: 0;
}

.why-avinya-showcase .u-047,
.why-avinya-showcase .u-048,
.why-avinya-showcase .u-049,
.why-avinya-showcase .u-050,
.why-avinya-showcase .reason-card,
.why-avinya-showcase .u-054,
.why-avinya-showcase .u-055 {
    font-family: var(--font-sans);
}

.why-avinya-showcase .u-048 {
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .24em;
    line-height: 1;
    text-transform: uppercase;
}

.why-avinya-showcase .u-049 {
    font-size: clamp(2.4rem, 4vw, 3.9rem);
    line-height: 1.06;
    letter-spacing: -.05em;
    font-weight: 800;
}

.why-avinya-showcase .u-050 {
    font-size: clamp(.96rem, 1.08vw, 1.04rem);
    line-height: 1.65;
    letter-spacing: -.008em;
    font-weight: 400;
}

.why-avinya-showcase .u-054 {
    font-size: 1.12rem;
    line-height: 1.28;
    letter-spacing: -.02em;
    font-weight: 700;
}

.why-avinya-showcase .u-055 {
    font-size: .98rem;
    line-height: 1.72;
    letter-spacing: -.01em;
    font-weight: 400;
}

.delivery-showcase {
    background: linear-gradient(180deg, #f8fbff 0%, #eef5fc 100%);
}

.delivery-showcase .u-002 {
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
}

.delivery-showcase .u-062 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.delivery-showcase .process-step {
    min-height: 220px;
    padding: 28px 24px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #dce7f1;
    box-shadow: 0 18px 40px rgba(9, 30, 66, .08);
}

.delivery-showcase .process-step h3 {
    display: none;
}

.delivery-showcase .process-step h4 {
    margin: 8px 0 0;
    font-size: 1rem;
    line-height: 1.25;
    letter-spacing: -.02em;
}

.delivery-showcase .process-step p {
    margin-top: 12px;
    font-size: .92rem;
    line-height: 1.6;
    letter-spacing: -.01em;
}

.impact-showcase {
    background:
        radial-gradient(circle at top right, rgba(94, 232, 193, .08), transparent 28%),
        linear-gradient(180deg, #071321 0%, #0b1d30 100%);
    color: #fff;
}

.impact-showcase .u-064 {
    max-width: 760px;
    margin-inline: auto;
}

.impact-showcase .u-037 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.impact-showcase .u-066 {
    min-height: 180px;
    padding: 28px 22px;
    border-radius: 24px;
    background: rgba(16, 40, 63, .96);
    border: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.impact-showcase .metric {
    display: block;
    margin-bottom: 0;
    color: #fff;
    font-size: clamp(2.55rem, 5.5vw, 4.2rem);
    line-height: .95;
    letter-spacing: -.055em;
}

.impact-showcase .u-066 .u-036 {
    margin: 0;
    max-width: 12ch;
    line-height: 1.35;
    letter-spacing: -.01em;
}

.ecosystem-showcase {
    background:
        radial-gradient(circle at 15% 0%, rgba(0, 102, 255, .08), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.ecosystem-showcase .u-064 {
    max-width: 760px;
    margin-inline: auto;
}

.ecosystem-showcase .u-037 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.ecosystem-showcase .ecosystem-card {
    min-height: 190px;
    padding: 28px 24px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #dce7f1;
    box-shadow: 0 18px 40px rgba(9, 30, 66, .08);
}

.ecosystem-showcase .ecosystem-card p {
    font-size: .9rem;
    line-height: 1.45;
    letter-spacing: -.01em;
}

.advantages-showcase {
    background:
        radial-gradient(circle at top left, rgba(0, 199, 140, .08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.advantages-showcase .u-011 {
    max-width: 760px;
    margin-inline: auto;
}

.advantages-showcase .u-051 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.advantages-showcase .advantage-card {
    min-height: 200px;
    padding: 28px 24px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #dce7f1;
    box-shadow: 0 18px 40px rgba(9, 30, 66, .08);
}

.testimonials-showcase {
    background:
        radial-gradient(circle at top left, rgba(0, 102, 255, .08), transparent 26%),
        linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.testimonials-showcase .u-064 {
    max-width: 760px;
    margin-inline: auto;
    margin-bottom: 34px;
}

.testimonials-showcase .u-012 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.testimonials-showcase .card {
    position: relative;
    min-height: 184px;
    padding: 22px 22px 18px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #dce7f1;
    box-shadow: 0 18px 40px rgba(9, 30, 66, .08);
    font-size: 0;
}

.testimonials-showcase .card::before {
    content: "“";
    position: absolute;
    top: 18px;
    right: 22px;
    color: rgba(0, 102, 255, .18);
    font-size: 5rem;
    line-height: 1;
}

.testimonials-showcase .card-icon {
    display: none;
}

.testimonials-showcase .card h3 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #101828;
    font-size: 1rem;
    line-height: 1.28;
}

.testimonials-showcase .card p {
    margin: 0;
    color: #475467;
    font-size: .9rem;
    line-height: 1.5;
}

.testimonials-showcase .card b {
    display: inline-block;
    margin-top: 10px;
    color: #075ccb;
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.faq-showcase {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.faq-showcase::before,
.faq-showcase::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.faq-showcase::before {
    top: -110px;
    right: -120px;
    width: 360px;
    height: 360px;
    background:
        radial-gradient(circle, rgba(30, 136, 255, .10), transparent 68%),
        radial-gradient(circle at 30% 30%, rgba(0, 229, 195, .08), transparent 42%);
    filter: blur(1px);
}

.faq-showcase::after {
    left: -130px;
    bottom: -150px;
    width: 420px;
    height: 420px;
    background:
        radial-gradient(circle, rgba(0, 229, 195, .06), transparent 70%),
        radial-gradient(circle at 65% 35%, rgba(30, 136, 255, .05), transparent 40%);
    filter: blur(1px);
}

.faq-showcase .u-011 {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin-inline: auto;
}

.faq-showcase .u-073 {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
    max-width: 900px;
}

.faq-showcase .faq-item {
    position: relative;
    padding: 24px 26px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #dce7f1;
    box-shadow: 0 18px 40px rgba(9, 30, 66, .06);
    overflow: hidden;
}

.faq-showcase .faq-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(30, 136, 255, .08), transparent 24%),
        radial-gradient(circle at bottom left, rgba(0, 229, 195, .06), transparent 22%);
    pointer-events: none;
}

.faq-showcase .faq-item > * {
    position: relative;
    z-index: 1;
}

.faq-showcase .faq-item summary {
    cursor: pointer;
    list-style: none;
}

.faq-showcase .faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-showcase .faq-item p {
    margin-top: 14px;
}

.faq-showcase .card-icon {
    display: none;
}

.contact-showcase {
    background:
        radial-gradient(circle at top right, rgba(0, 199, 140, .08), transparent 26%),
        linear-gradient(180deg, #071321 0%, #0b1d30 100%);
    color: #fff;
}

.contact-showcase .u-076 {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
    gap: 32px;
    align-items: stretch;
}

.contact-showcase .u-076 > div:first-child {
    max-width: 640px;
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-showcase .u-076 > div:last-child {
    display: flex;
    align-self: stretch;
}

.contact-showcase h2,
.contact-showcase h3 {
    color: #fff;
}

.contact-showcase p {
    color: var(--text-on-dark-muted);
}

.contact-showcase a {
    color: #fff;
}

.contact-showcase .u-079 {
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-showcase .u-080,
.contact-showcase .u-081 {
    background: #fff;
    border-color: #d7e2ed;
}

.contact-showcase .u-078 a {
    color: #fff;
    text-decoration-color: rgba(255, 255, 255, .35);
}

.contact-showcase .u-078 a:hover {
    text-decoration-color: #fff;
}

/* Contact section typography refresh */
.contact-showcase,
.contact-showcase .u-014,
.contact-showcase .u-077,
.contact-showcase .u-078,
.contact-showcase .u-078 h3,
.contact-showcase .u-078 p,
.contact-showcase .u-078 a,
.contact-showcase .u-079,
.contact-showcase .u-080,
.contact-showcase .u-081,
.contact-showcase .u-082 {
    font-family: var(--font-sans);
}

.contact-showcase .u-014 {
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    line-height: .94;
    letter-spacing: -.065em;
    font-weight: 900;
}

.contact-showcase .u-077 {
    font-size: clamp(.98rem, 1.15vw, 1.08rem);
    line-height: 1.55;
    letter-spacing: -.01em;
    font-weight: 400;
    max-width: 50ch;
}

.contact-showcase .u-078 {
    margin-top: 32px;
    display: grid;
    gap: 16px;
}

.contact-showcase .u-078 h3 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: .78rem;
    line-height: 1;
    letter-spacing: .16em;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-showcase .u-078 p,
.contact-showcase .u-078 a {
    font-size: .96rem;
    line-height: 1.58;
    letter-spacing: -.01em;
    font-weight: 400;
}

.contact-showcase .u-078 a {
    text-decoration-thickness: from-font;
    text-underline-offset: .16em;
}

.contact-showcase .u-078 p.u-036 {
    margin-top: 0;
    max-width: 46ch;
}

.contact-showcase .u-078 br {
    line-height: 1.2;
}

.contact-showcase .u-079 {
    font-size: 1rem;
    width: 100%;
    padding: 34px;
    border-radius: 28px;
}

.contact-showcase .u-080,
.contact-showcase .u-081 {
    font-size: .95rem;
    line-height: 1.3;
    letter-spacing: -.01em;
    padding: 16px 18px;
    border-radius: 14px;
}

.contact-showcase .u-082 {
    font-size: .96rem;
    line-height: 1.1;
    letter-spacing: -.01em;
    font-weight: 700;
    padding: 16px 34px;
    border-radius: 12px;
    align-self: flex-start;
}

@media (max-width: 1180px) {
    .technology-stack-showcase .u-024,
    .management-features-showcase .u-024,
    .industry-showcase .u-037,
    .ecosystem-showcase .u-037,
    .impact-showcase .u-037 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-showcase .u-016,
    .smart-pos-showcase .u-006,
    .contact-showcase .u-076 {
        grid-template-columns: 1fr;
    }

    .smart-pos-showcase .u-007 {
        min-height: 520px;
    }

    .smart-pos-showcase .u-006 > div:last-child {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .roles-showcase .u-037,
    .why-avinya-showcase .u-051,
    .advantages-showcase .u-051,
    .testimonials-showcase .u-012,
    .audience-showcase .u-012,
    .why-smart-pos-showcase .u-042,
    .delivery-showcase .u-062 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .technology-stack-showcase .u-024,
    .management-features-showcase .u-024,
    .industry-showcase .u-037,
    .ecosystem-showcase .u-037,
    .impact-showcase .u-037,
    .roles-showcase .u-037,
    .why-avinya-showcase .u-051,
    .advantages-showcase .u-051,
    .testimonials-showcase .u-012,
    .audience-showcase .u-012,
    .why-smart-pos-showcase .u-042,
    .delivery-showcase .u-062,
    .smart-pos-showcase .u-006 > div:last-child {
        grid-template-columns: 1fr;
    }

    .smart-pos-showcase .u-007 {
        min-height: 380px;
    }

    .testimonials-showcase .card {
        min-height: auto;
    }

    .testimonials-showcase .card::before {
        top: 10px;
        right: 14px;
        font-size: 4rem;
    }
}

/* Process alignment override */
.process-showcase .u-016 {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
    align-items: stretch !important;
}

.process-showcase .u-017 {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    min-height: 240px !important;
    padding: 28px 24px 24px !important;
    text-align: left !important;
    background: linear-gradient(180deg, rgba(13, 34, 56, .92), rgba(8, 21, 36, .98)) !important;
    border: 1px solid rgba(255, 255, 255, .09) !important;
    border-radius: 24px !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .24) !important;
    overflow: hidden !important;
}

.process-showcase .u-017::before {
    position: static !important;
    display: inline-grid !important;
    place-items: center !important;
    width: 44px !important;
    height: 44px !important;
    margin-bottom: 18px !important;
    color: #fff !important;
    background: linear-gradient(145deg, #0066ff, #00c37a) !important;
    border-radius: 999px !important;
    font-size: .92rem !important;
    font-weight: 800 !important;
    letter-spacing: .08em !important;
    box-shadow: 0 16px 30px rgba(0, 102, 255, .24) !important;
}

.process-showcase .u-017:nth-child(1)::before { content: "01" !important; }
.process-showcase .u-017:nth-child(3)::before { content: "02" !important; }
.process-showcase .u-017:nth-child(5)::before { content: "03" !important; }
.process-showcase .u-017:nth-child(7)::before { content: "04" !important; }

.process-showcase .u-017 .u-018,
.process-showcase .u-017 .u-021,
.process-showcase .u-020 {
    display: none !important;
}

.process-showcase .u-019 {
    margin: 0 !important;
    color: #fff !important;
    font-size: 1.12rem !important;
    line-height: 1.35 !important;
}

.process-showcase .u-017::after {
    position: static !important;
    display: block !important;
    margin-top: 12px !important;
    color: #cbd6e2 !important;
    font-size: .96rem !important;
    line-height: 1.7 !important;
}

.process-showcase .u-017:nth-child(1)::after { content: "Inbound verification and dock receiving with RFID capture." !important; }
.process-showcase .u-017:nth-child(3)::after { content: "Organized storage with location awareness and batch control." !important; }
.process-showcase .u-017:nth-child(5)::after { content: "Continuous tracking across aisles, racks, and stock movement." !important; }
.process-showcase .u-017:nth-child(7)::after { content: "Fast outbound confirmation before items leave the warehouse." !important; }

@media (max-width: 1100px) {
    .process-showcase .u-016 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 680px) {
    .process-showcase .u-016 {
        grid-template-columns: 1fr !important;
    }
}

/* New warehouse workflow layout */
.warehouse-flow-showcase {
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 7vw, 7rem) 0;
    background:
        radial-gradient(circle at 12% 14%, rgba(0, 102, 255, .22), transparent 18%),
        radial-gradient(circle at 86% 18%, rgba(0, 199, 140, .18), transparent 20%),
        radial-gradient(circle at 65% 84%, rgba(0, 102, 255, .14), transparent 22%),
        linear-gradient(180deg, #06101d 0%, #0a1b2f 55%, #081423 100%);
    color: #fff;
}

.warehouse-flow-showcase::before,
.warehouse-flow-showcase::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.warehouse-flow-showcase::before {
    top: -140px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 255, 255, .06), transparent 68%);
    filter: blur(2px);
}

.warehouse-flow-showcase::after {
    left: -140px;
    bottom: -160px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 199, 140, .08), transparent 70%);
    filter: blur(2px);
}

.warehouse-flow {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.warehouse-flow-copy {
    position: sticky;
    top: 100px;
    padding: 34px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(17, 38, 61, .82), rgba(8, 24, 41, .9));
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
    backdrop-filter: blur(18px);
    isolation: isolate;
}

.warehouse-flow-copy::before {
    content: "";
    position: absolute;
    inset: auto -110px -120px auto;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0, 102, 255, .16), transparent 68%);
    z-index: -1;
}

.warehouse-flow-copy::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 24px rgba(0, 102, 255, .05), 0 0 0 52px rgba(0, 199, 140, .03);
    z-index: -1;
}

.warehouse-flow-copy h2 {
    margin: 18px 0 16px;
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.02;
    letter-spacing: -.05em;
}

.warehouse-flow-copy p {
    max-width: 52ch;
    margin: 0;
    color: #d4dde7;
    font-size: 1.02rem;
    line-height: 1.75;
}

.warehouse-flow-list {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.warehouse-flow-list li {
    position: relative;
    padding: 14px 16px 14px 46px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    color: #edf3f8;
    font-weight: 600;
}

.warehouse-flow-list li::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: linear-gradient(145deg, #0066ff, #00c37a);
    box-shadow: 0 0 0 5px rgba(0, 102, 255, .10);
}

.warehouse-flow-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding-top: 18px;
}

.warehouse-flow-track::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 50%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .12), transparent);
    transform: translateX(-50%);
}

.warehouse-flow-track::after {
    content: "";
    position: absolute;
    inset: 40px 24px auto auto;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 50%;
    box-shadow: 0 0 0 30px rgba(0, 102, 255, .04), 0 0 0 64px rgba(0, 199, 140, .03);
    opacity: .75;
    pointer-events: none;
}

.warehouse-flow-card {
    position: relative;
    min-height: 230px;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    background: linear-gradient(180deg, rgba(13, 34, 56, .92), rgba(8, 21, 36, .98));
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
    overflow: hidden;
    isolation: isolate;
}

.warehouse-flow-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066ff, #00c37a);
}

.warehouse-flow-card::after {
    content: "";
    position: absolute;
    inset: auto -18px -18px auto;
    width: 92px;
    height: 92px;
    background: radial-gradient(circle, rgba(255, 255, 255, .1), transparent 68%);
    opacity: .9;
    pointer-events: none;
}

.warehouse-flow-card span {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: #fff;
    background: linear-gradient(145deg, #0066ff, #00c37a);
    border-radius: 999px;
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .08em;
    box-shadow: 0 16px 30px rgba(0, 102, 255, .24);
}

.warehouse-flow-card h3 {
    margin: 0;
    color: #fff;
    font-size: 1.12rem;
    line-height: 1.35;
}

.warehouse-flow-card p {
    margin: 0;
    color: #cbd6e2;
    font-size: .96rem;
    line-height: 1.75;
}

.warehouse-flow-card:nth-child(odd) {
    transform: translateY(0);
}

.warehouse-flow-card:nth-child(even) {
    transform: translateY(28px);
}

.warehouse-flow-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 72px rgba(0, 0, 0, .3);
}

@media (max-width: 1100px) {
    .warehouse-flow {
        grid-template-columns: 1fr;
    }

    .warehouse-flow-copy {
        position: static;
    }

    .warehouse-flow-track::before,
    .warehouse-flow-track::after {
        display: none;
    }
}

@media (max-width: 760px) {
    .warehouse-flow-track {
        grid-template-columns: 1fr;
    }

    .warehouse-flow-copy {
        padding: 28px 22px;
    }

    .warehouse-flow-card:nth-child(even) {
        transform: none;
    }
}

/* Enterprise workflow timeline */
.warehouse-flow-showcase {
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 8vw, 7.5rem) 0;
    background:
        radial-gradient(circle at 12% 14%, rgba(30, 136, 255, .24), transparent 18%),
        radial-gradient(circle at 86% 18%, rgba(0, 229, 195, .18), transparent 20%),
        radial-gradient(circle at 62% 82%, rgba(30, 136, 255, .14), transparent 22%),
        linear-gradient(180deg, #06101d 0%, #071827 50%, #081423 100%);
    color: #fff;
}

.warehouse-flow-showcase::before,
.warehouse-flow-showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.warehouse-flow-showcase::before {
    background:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .03) 0 1px, transparent 1px 88px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 88px);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .75), transparent 88%);
    opacity: .55;
}

.warehouse-flow-showcase::after {
    background:
        radial-gradient(circle at 16% 22%, rgba(255, 255, 255, .08), transparent 0 22px, transparent 23px),
        radial-gradient(circle at 78% 24%, rgba(255, 255, 255, .06), transparent 0 18px, transparent 19px),
        radial-gradient(circle at 45% 78%, rgba(255, 255, 255, .05), transparent 0 16px, transparent 17px);
    opacity: .7;
}

.warehouse-flow-header {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: center;
}

.warehouse-flow-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #7fc7ff;
    font-size: .78rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.warehouse-flow-kicker > span {
    width: 26px;
    height: 2px;
    background: linear-gradient(90deg, #1E88FF, #00E5C3);
}

.warehouse-flow-header h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: .98;
    letter-spacing: -.06em;
}

.warehouse-flow-header p {
    max-width: 66ch;
    margin: 18px auto 0;
    color: #a8b3c7;
    font-size: clamp(1rem, 1.2vw, 1.0625rem);
    line-height: 1.78;
}

.workflow-timeline {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(14, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.workflow-step {
    display: flex;
    grid-column: span 2;
    min-width: 0;
}

.workflow-card {
    position: relative;
    width: 100%;
    min-height: 382px;
    padding: 30px 28px 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    background: rgba(20, 32, 52, .72);
    box-shadow: 0 26px 72px rgba(0, 0, 0, .28);
    backdrop-filter: blur(18px);
    transform: translateY(var(--workflow-lift, 0));
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.workflow-card-glow {
    position: absolute;
    inset: -28% auto auto -18%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 195, .18), transparent 68%);
    filter: blur(10px);
    opacity: .7;
    pointer-events: none;
    animation: driftGlow 10s ease-in-out infinite;
}

.workflow-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(30, 136, 255, .75), rgba(0, 229, 195, .65), rgba(255, 255, 255, .08));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: .55;
    pointer-events: none;
}

.workflow-card::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 180px;
    height: 180px;
    background:
        radial-gradient(circle at 35% 35%, rgba(0, 229, 195, .12), transparent 36%),
        radial-gradient(circle at 60% 60%, rgba(30, 136, 255, .10), transparent 48%);
    opacity: .95;
    pointer-events: none;
}

.workflow-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 195, .24);
    box-shadow: 0 34px 82px rgba(0, 0, 0, .36);
}

.workflow-step-number {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    color: #fff;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .08em;
    background: linear-gradient(135deg, #1E88FF, #00E5C3);
    border-radius: 18px;
    box-shadow: 0 16px 30px rgba(30, 136, 255, .24);
    animation: stepPulse 4s ease-in-out infinite;
}

.workflow-icon {
    display: inline-grid;
    place-items: center;
    width: 86px;
    height: 86px;
    margin-bottom: 22px;
    color: #fff;
    background: linear-gradient(145deg, rgba(30, 136, 255, .18), rgba(0, 229, 195, .14));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 18px 36px rgba(0, 0, 0, .12);
    transition: transform .35s ease, box-shadow .35s ease;
}

.workflow-icon svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, .08));
}

.workflow-card h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.15;
    letter-spacing: -.03em;
}

.workflow-card p {
    max-width: 30ch;
    margin: 0;
    color: #a8b3c7;
    font-size: 1.02rem;
    line-height: 1.75;
}

.workflow-card:hover .workflow-icon {
    transform: rotate(-6deg) scale(1.04);
}

.workflow-connector {
    grid-column: span 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 0;
}

.workflow-connector svg {
    width: 100%;
    height: 90px;
    overflow: visible;
}

.connector-track,
.connector-pulse,
.connector-arrow {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.connector-track {
    stroke: rgba(255, 255, 255, .14);
    stroke-width: 8;
}

.connector-pulse {
    stroke: #00E5C3;
    stroke-width: 3;
    stroke-dasharray: 18 150;
    filter: drop-shadow(0 0 10px rgba(0, 229, 195, .35));
    animation: connectorFlow 3.2s linear infinite;
}

.connector-arrow {
    stroke: #1E88FF;
    stroke-width: 4;
    opacity: .9;
}

@keyframes connectorFlow {
    to { stroke-dashoffset: -168; }
}

@keyframes stepPulse {
    0%, 100% { box-shadow: 0 16px 30px rgba(30, 136, 255, .24); }
    50% { box-shadow: 0 20px 40px rgba(0, 229, 195, .36); }
}

@keyframes driftGlow {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: .6; }
    50% { transform: translate3d(20px, 12px, 0) scale(1.08); opacity: .85; }
}

@media (max-width: 1180px) {
    .workflow-timeline {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .workflow-card {
        min-height: 0;
    }

    .workflow-connector {
        width: 100%;
        height: 76px;
        padding: 0;
        justify-self: center;
    }

    .workflow-connector svg {
        width: 100%;
        height: 76px;
        transform: rotate(90deg);
    }

    .workflow-step {
        grid-column: auto;
    }

    .workflow-connector {
        grid-column: auto;
    }
}

@media (max-width: 760px) {
    .warehouse-flow-header {
        margin-bottom: 36px;
    }

    .workflow-card {
        padding: 26px 22px 22px;
        border-radius: 22px;
    }

    .workflow-step-number {
        width: 54px;
        height: 54px;
        margin-bottom: 18px;
    }

    .workflow-icon {
        width: 74px;
        height: 74px;
        margin-bottom: 18px;
        border-radius: 20px;
    }

    .workflow-icon svg {
        width: 34px;
        height: 34px;
    }

    .workflow-card h3 {
        font-size: 1.25rem;
    }

    .workflow-card p {
        font-size: .98rem;
    }

    .workflow-connector {
        height: 62px;
    }

    .workflow-connector svg {
        height: 62px;
    }
}

/* Premium enterprise styling for role / audience / value / industry sections */

section.roles-showcase,
section.audience-showcase,
section.why-smart-pos-showcase,
section.industry-showcase {
    background:
        radial-gradient(circle at top left, rgba(30, 136, 255, .06), transparent 30%),
        radial-gradient(circle at top right, rgba(0, 229, 195, .05), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    color: #0f172a;
}

section.roles-showcase {
    background:
        radial-gradient(circle at top right, rgba(94, 232, 193, .08), transparent 28%),
        linear-gradient(180deg, #071321 0%, #0b1d30 100%);
    color: #fff;
}

section.roles-showcase .container,
section.audience-showcase .container,
section.why-smart-pos-showcase .container,
section.industry-showcase .container {
    position: relative;
    z-index: 1;
}

section.roles-showcase .u-011,
section.audience-showcase .u-011,
section.why-smart-pos-showcase .u-011,
section.industry-showcase .u-002 {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
}

section.roles-showcase .u-011 h2,
section.roles-showcase .u-014,
section.audience-showcase .u-011 h2,
section.why-smart-pos-showcase .u-011 h2,
section.industry-showcase .u-004 {
    margin-bottom: 14px;
    color: #0f172a;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -.04em;
    font-weight: 800;
}

section.roles-showcase .u-011 h2,
section.roles-showcase .u-014 {
    color: #fff;
}

section.roles-showcase .u-036,
section.audience-showcase .u-011 p,
section.why-smart-pos-showcase .u-011 p,
section.industry-showcase .u-005 {
    margin: 0 auto;
    max-width: 760px;
    color: #5b6b80;
    font-size: clamp(1rem, 1.15vw, 1.08rem);
    line-height: 1.75;
}

section.roles-showcase .u-036 {
    color: rgba(233, 241, 250, .78);
}

section.industry-showcase .u-045 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(30, 136, 255, .08);
    border: 1px solid rgba(30, 136, 255, .12);
    color: #1e88ff;
    font-size: .8rem;
    line-height: 1;
    letter-spacing: .22em;
    font-weight: 700;
    text-transform: uppercase;
}

section.roles-showcase .u-037,
section.audience-showcase .u-012,
section.why-smart-pos-showcase .u-042,
section.industry-showcase .u-037 {
    margin-top: 2.5rem;
    gap: 22px;
}

section.roles-showcase .role-card {
    min-height: 210px !important;
    padding: 30px 26px !important;
    border-radius: 24px !important;
    background: rgba(16, 40, 63, .96) !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .2) !important;
    text-align: left;
}

section.roles-showcase .role-card h3 {
    color: #fff !important;
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 1.16rem;
    line-height: 1.25;
    letter-spacing: -.02em;
    font-weight: 700;
}

section.roles-showcase .role-card p {
    color: rgba(233, 241, 250, .78) !important;
    font-size: .98rem;
    line-height: 1.72;
}

section.roles-showcase .role-card .u-039 {
    color: rgba(233, 241, 250, .78) !important;
}

section.roles-showcase .role-card .card-icon,
section.roles-showcase .role-card .role-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

section.roles-showcase .role-card .card-icon svg,
section.roles-showcase .role-card .role-icon svg {
    color: #fff;
    fill: currentColor;
}

section.industry-showcase .u-046 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    text-align: center;
}

section.roles-showcase .role-card::before {
    background: none !important;
}

section.roles-showcase .role-card::after {
    display: none !important;
}

section.roles-showcase .role-card:hover {
    border-color: rgba(94, 232, 193, .18) !important;
    box-shadow:
        0 28px 64px rgba(0, 0, 0, .28),
        0 0 0 1px rgba(94, 232, 193, .06);
}

section.roles-showcase .role-card:hover {
    transform: translateY(-4px);
}

section.roles-showcase .role-card::before,
section.roles-showcase .role-card::after {
    content: none !important;
    display: none !important;
}

section.roles-showcase .role-card::before {
    inset: 0;
}

section.roles-showcase .role-card::after {
    inset: 22px auto auto 22px;
}

section.roles-showcase .role-card > * {
    position: relative;
    z-index: 1;
}

section.roles-showcase .role-card h3,
section.roles-showcase .role-card p {
    margin-left: 0;
}

section.roles-showcase .role-card,
section.audience-showcase .audience-card,
section.why-smart-pos-showcase .why-pos-card,
section.industry-showcase .industry-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 28px;
    border-radius: 28px;
    isolation: isolate;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(247, 251, 255, .98) 100%);
    border: 1px solid rgba(148, 163, 184, .18);
    box-shadow:
        0 18px 45px rgba(15, 23, 42, .08),
        inset 0 1px 0 rgba(255, 255, 255, .95);
    overflow: hidden;
    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease,
        background .28s ease;
}

section.roles-showcase .role-card > *,
section.audience-showcase .audience-card > *,
section.why-smart-pos-showcase .why-pos-card > *,
section.industry-showcase .industry-card > * {
    position: relative;
    z-index: 1;
}

section.roles-showcase .role-card::before,
section.audience-showcase .audience-card::before,
section.why-smart-pos-showcase .why-pos-card::before,
section.industry-showcase .industry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(30, 136, 255, .12), transparent 30%),
        radial-gradient(circle at bottom left, rgba(0, 229, 195, .08), transparent 26%);
    opacity: .9;
    pointer-events: none;
}

section.roles-showcase .role-card::after,
section.audience-showcase .audience-card::after,
section.why-smart-pos-showcase .why-pos-card::after,
section.industry-showcase .industry-card::after {
    content: "";
    position: absolute;
    inset: auto -32px -32px auto;
    width: 124px;
    height: 124px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 136, 255, .08), transparent 68%);
    pointer-events: none;
}

section.roles-showcase .role-card:hover,
section.audience-showcase .audience-card:hover,
section.why-smart-pos-showcase .why-pos-card:hover,
section.industry-showcase .industry-card:hover {
    transform: translateY(-6px);
    border-color: rgba(30, 136, 255, .24);
    box-shadow:
        0 28px 60px rgba(15, 23, 42, .12),
        0 0 0 1px rgba(30, 136, 255, .06);
}

section.roles-showcase .role-card h3,
section.audience-showcase .audience-card h3,
section.why-smart-pos-showcase .why-pos-card h3,
section.industry-showcase .industry-card h3 {
    position: relative;
    margin-bottom: 10px;
    color: #0f172a;
    font-size: 1.12rem;
    line-height: 1.28;
    letter-spacing: -.02em;
    font-weight: 750;
}

section.roles-showcase .role-card p,
section.audience-showcase .audience-card p,
section.why-smart-pos-showcase .why-pos-card p,
section.industry-showcase .industry-card p {
    position: relative;
    margin: 0;
    color: #5b6b80;
    font-size: .98rem;
    line-height: 1.7;
}

section.industry-showcase .industry-card p {
    font-size: .9rem;
    line-height: 1.55;
    letter-spacing: -.01em;
}

section.industry-showcase .industry-card .u-046 {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(30, 136, 255, .12), rgba(0, 229, 195, .1));
    border: 1px solid rgba(30, 136, 255, .14);
    box-shadow: 0 14px 30px rgba(30, 136, 255, .08);
    font-size: 1.65rem;
    line-height: 1;
}

section.industry-showcase .industry-card .u-046::before {
    content: none !important;
    display: none !important;
    background: none !important;
}

section.roles-showcase .role-card::before,
section.audience-showcase .audience-card::before,
section.why-smart-pos-showcase .why-pos-card::before {
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
}

@media (max-width: 1180px) {
    section.roles-showcase .u-037,
    section.industry-showcase .u-037 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    section.audience-showcase .u-012,
    section.why-smart-pos-showcase .u-042 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    section.roles-showcase .u-037,
    section.audience-showcase .u-012,
    section.why-smart-pos-showcase .u-042,
    section.industry-showcase .u-037 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    section.roles-showcase .role-card,
    section.audience-showcase .audience-card,
    section.why-smart-pos-showcase .why-pos-card,
    section.industry-showcase .industry-card {
        padding: 24px 22px;
        border-radius: 24px;
    }

    section.roles-showcase .u-011 h2,
    section.roles-showcase .u-014,
    section.audience-showcase .u-011 h2,
    section.why-smart-pos-showcase .u-011 h2,
    section.industry-showcase .u-004 {
        font-size: clamp(1.8rem, 9vw, 2.3rem);
    }

    section.industry-showcase .industry-card .u-046 {
        width: 54px;
        height: 54px;
        font-size: 1.4rem;
    }
}

/* Final override: Role-Based Management clean row, no inner gradients or circles */
.roles-showcase .u-037 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.roles-showcase .role-card {
    background: rgba(16, 40, 63, .96) !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .2) !important;
    text-align: left;
    isolation: isolate;
}

.roles-showcase .role-card::before,
.roles-showcase .role-card::after {
    content: none !important;
    display: none !important;
    background: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

.roles-showcase .role-card .card-icon,
.roles-showcase .role-card .role-icon {
    background: rgba(255, 255, 255, .08) !important;
    margin-inline: 0 !important;
    justify-content: center !important;
    align-items: center !important;
}

.industry-showcase .industry-card .u-046 {
    display: none !important;
}

/* Delivery process alignment fix */
.delivery-showcase .process-step {
    text-align: left;
    align-items: flex-start;
}

.delivery-showcase .process-step .card-icon {
    width: 56px !important;
    height: 56px !important;
    margin: 0 0 18px 0 !important;
    align-self: flex-start;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.delivery-showcase .process-step h3,
.delivery-showcase .process-step h4,
.delivery-showcase .process-step p {
    text-align: left;
}

.delivery-showcase .process-step h4 {
    margin-top: 8px;
}

/* Business Impact typography-only refresh */
.impact-showcase,
.impact-showcase .u-064,
.impact-showcase .u-037,
.impact-showcase .u-066,
.impact-showcase .metric,
.impact-showcase .u-014,
.impact-showcase .u-065,
.impact-showcase .u-036 {
    font-family: var(--font-sans);
}

.impact-showcase .u-014 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -.05em;
    font-weight: 800;
}

.impact-showcase .u-065 {
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    line-height: 1.7;
    letter-spacing: -.01em;
    font-weight: 400;
}

.impact-showcase .metric {
    font-size: clamp(2.4rem, 5.5vw, 4.1rem);
    line-height: .95;
    letter-spacing: -.06em;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.impact-showcase .u-066 .u-036 {
    font-size: .96rem;
    line-height: 1.4;
    letter-spacing: -.01em;
    font-weight: 500;
    text-wrap: balance;
}

/* Enterprise Advantages typography-only refresh */
.advantages-showcase,
.advantages-showcase .u-011,
.advantages-showcase .advantage-card,
.advantages-showcase .advantage-card h3,
.advantages-showcase .advantage-card p {
    font-family: var(--font-sans);
}

.advantages-showcase .u-011 h2 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -.05em;
    font-weight: 800;
}

.advantages-showcase .u-011 > p {
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    line-height: 1.7;
    letter-spacing: -.01em;
    font-weight: 400;
}

.advantages-showcase .advantage-card h3 {
    font-size: 1.08rem;
    line-height: 1.28;
    letter-spacing: -.02em;
    font-weight: 700;
}

.advantages-showcase .advantage-card p {
    font-size: .94rem;
    line-height: 1.55;
    letter-spacing: -.01em;
    font-weight: 400;
}

/* Technology Ecosystem + Enterprise Advantages typography harmonization */
.ecosystem-showcase,
.ecosystem-showcase .u-064,
.ecosystem-showcase .u-068,
.ecosystem-showcase .u-069,
.ecosystem-showcase .ecosystem-card,
.ecosystem-showcase .ecosystem-card h3,
.ecosystem-showcase .ecosystem-card p,
.advantages-showcase,
.advantages-showcase .u-011,
.advantages-showcase .u-011 h2,
.advantages-showcase .u-011 > p,
.advantages-showcase .advantage-card,
.advantages-showcase .advantage-card h3,
.advantages-showcase .advantage-card p {
    font-family: var(--font-sans);
}

.ecosystem-showcase .u-068 {
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .24em;
    line-height: 1;
    text-transform: uppercase;
}

.ecosystem-showcase .u-069,
.advantages-showcase .u-011 h2 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -.05em;
    font-weight: 800;
}

.ecosystem-showcase .u-064 > p,
.advantages-showcase .u-011 > p {
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    line-height: 1.7;
    letter-spacing: -.01em;
    font-weight: 400;
}

.ecosystem-showcase .ecosystem-card h3,
.advantages-showcase .advantage-card h3 {
    font-size: 1.08rem;
    line-height: 1.28;
    letter-spacing: -.02em;
    font-weight: 700;
}

.ecosystem-showcase .ecosystem-card p,
.advantages-showcase .advantage-card p {
    font-size: .94rem;
    line-height: 1.55;
    letter-spacing: -.01em;
    font-weight: 400;
}

/* Global section heading / intro harmony */
.impact-showcase .u-014,
.why-avinya-showcase .u-049,
.ecosystem-showcase .u-069,
.advantages-showcase .u-011 h2,
.testimonials-showcase .u-064 h2,
.faq-showcase .u-073 > summary,
.delivery-showcase .u-002 > h2,
.technology-stack-showcase .u-011 h2,
.smart-pos-showcase .u-011 h2,
.management-features-showcase .u-011 h2,
.roles-showcase .u-011 h2,
.audience-showcase .u-011 h2,
.why-smart-pos-showcase .u-011 h2,
.industry-showcase .u-002 h2 {
    font-size: clamp(2.2rem, 4vw, 3.6rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -.05em !important;
    font-weight: 800 !important;
    font-family: var(--font-sans) !important;
}

.impact-showcase .u-065,
.why-avinya-showcase .u-050,
.ecosystem-showcase .u-064 > p,
.advantages-showcase .u-011 > p,
.testimonials-showcase .u-064 > p,
.faq-showcase .u-073 > p,
.delivery-showcase .u-002 > p,
.technology-stack-showcase .u-011 > p,
.smart-pos-showcase .u-011 > p,
.management-features-showcase .u-011 > p,
.roles-showcase .u-011 > p,
.audience-showcase .u-011 > p,
.why-smart-pos-showcase .u-011 > p,
.industry-showcase .u-002 > p {
    font-size: clamp(.98rem, 1.2vw, 1.08rem) !important;
    line-height: 1.7 !important;
    letter-spacing: -.01em !important;
    font-weight: 400 !important;
    font-family: var(--font-sans) !important;
}

/* Global card typography normalization */
.card h3,
.card h4,
.stat h3,
.stat h4,
.role-card h3,
.audience-card h3,
.why-pos-card h3,
.industry-card h3,
.reason-card h3,
.advantage-card h3,
.ecosystem-card h3,
.process-step h4 {
    font-size: 1.08rem !important;
    line-height: 1.28 !important;
    letter-spacing: -.02em !important;
    font-weight: 700 !important;
    font-family: var(--font-sans) !important;
}

.card p,
.stat p,
.role-card p,
.audience-card p,
.why-pos-card p,
.industry-card p,
.reason-card p,
.advantage-card p,
.ecosystem-card p,
.process-step p {
    font-size: .94rem !important;
    line-height: 1.55 !important;
    letter-spacing: -.01em !important;
    font-weight: 400 !important;
    font-family: var(--font-sans) !important;
}

.u-064 > p,
.u-011 > p,
.u-047 > p,
.u-056 > p,
.u-060 > p,
.u-064 .u-065,
.u-064 .u-061,
.u-064 .u-050,
.u-064 .u-058,
.u-064 .u-075,
.u-064 .u-036 {
    font-size: clamp(.96rem, 1.1vw, 1.02rem) !important;
    line-height: 1.65 !important;
    letter-spacing: -.01em !important;
    font-weight: 400 !important;
    font-family: var(--font-sans) !important;
}

/* Premium CTA section */
.cta-premium-showcase {
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 7.5vw, 7rem) 0;
    color: #fff;
    background:
        radial-gradient(circle at 14% 18%, rgba(30, 136, 255, .2), transparent 22%),
        radial-gradient(circle at 82% 16%, rgba(0, 229, 195, .16), transparent 18%),
        radial-gradient(circle at 50% 96%, rgba(255, 255, 255, .05), transparent 22%),
        linear-gradient(135deg, #06101d 0%, #071827 50%, #091f30 100%);
    font-family: var(--font-sans);
}

.cta-premium-showcase::before,
.cta-premium-showcase::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-premium-showcase::before {
    top: -120px;
    right: -170px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(255, 255, 255, .06);
    box-shadow: 0 0 0 80px rgba(30, 136, 255, .02), 0 0 0 160px rgba(0, 229, 195, .015);
    background: radial-gradient(circle, rgba(30, 136, 255, .14), transparent 68%);
}

.cta-premium-showcase::after {
    left: -160px;
    bottom: -180px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, .05);
    background: radial-gradient(circle, rgba(0, 229, 195, .1), transparent 70%);
}

.cta-premium-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    gap: 26px;
    align-items: center;
    max-width: 1120px;
    padding: clamp(1.5rem, 3vw, 2rem);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(20, 32, 52, .72), rgba(10, 24, 38, .92));
    box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
    backdrop-filter: blur(16px);
}

.cta-premium-shell::before {
    content: "";
    position: absolute;
    inset: 18px 18px auto auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 0 0 28px rgba(30, 136, 255, .05), 0 0 0 58px rgba(0, 229, 195, .03);
    pointer-events: none;
}

.cta-premium-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1rem, 2vw, 1.5rem) clamp(.5rem, 1vw, 1rem) clamp(1rem, 1.5vw, 1.25rem) clamp(.5rem, 1vw, .75rem);
}

.cta-premium-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 9px 14px;
    color: #5ee8c1;
    font-size: .76rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .22em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 999px;
}

.cta-premium-copy h2 {
    max-width: 12ch;
    margin: 16px 0 14px;
    color: #fff;
    font-size: clamp(2.4rem, 4vw, 4.4rem);
    line-height: .96;
    letter-spacing: -.06em;
    font-weight: 800;
    text-wrap: balance;
}

.cta-premium-copy p {
    max-width: 58ch;
    margin: 0;
    color: #a8b3c7;
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    line-height: 1.75;
    letter-spacing: -.01em;
}

.cta-premium-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.cta-premium-primary,
.cta-premium-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: .98rem;
    font-weight: 800;
    letter-spacing: .01em;
}

.cta-premium-primary {
    color: #fff;
    background: linear-gradient(135deg, #1e88ff, #156fe6);
    border: 1px solid rgba(30, 136, 255, .18);
    box-shadow: 0 18px 34px rgba(30, 136, 255, .22);
}

.cta-premium-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #156fe6, #00c37a);
    box-shadow: 0 24px 42px rgba(0, 195, 122, .22);
}

.cta-premium-secondary {
    color: #0f172a;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(148, 163, 184, .18);
}

.cta-premium-secondary:hover {
    color: #1e88ff;
    border-color: rgba(30, 136, 255, .16);
    background: rgba(255, 255, 255, .98);
}

.cta-premium-visual {
    position: relative;
    min-height: 280px;
    display: grid;
    gap: 16px;
    align-content: center;
    padding: 18px;
}

.cta-premium-visual::before {
    content: "";
    position: absolute;
    inset: 14% 10% 12% 14%;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, .06);
    background:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: .9;
    pointer-events: none;
}

.cta-premium-card,
.cta-premium-stack {
    position: relative;
    z-index: 1;
}

.cta-premium-card {
    padding: 22px 22px 20px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
    backdrop-filter: blur(14px);
}

.cta-premium-card span {
    display: inline-block;
    margin-bottom: 10px;
    color: #5ee8c1;
    font-size: .74rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.cta-premium-card strong {
    display: block;
    color: #fff;
    font-size: 1.08rem;
    line-height: 1.25;
    letter-spacing: -.02em;
}

.cta-premium-card p {
    margin: 12px 0 0;
    color: #a8b3c7;
    font-size: .92rem;
    line-height: 1.55;
}

.cta-premium-card-main {
    min-height: 176px;
    padding: 26px 26px 24px;
    background:
        radial-gradient(circle at top right, rgba(30, 136, 255, .12), transparent 22%),
        rgba(255, 255, 255, .05);
}

.cta-premium-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.cta-premium-stack .cta-premium-card {
    min-height: 144px;
}

.cta-premium-dots {
    position: absolute;
    inset: auto 22px 20px auto;
    width: 160px;
    height: 160px;
    background:
        radial-gradient(circle, rgba(30, 136, 255, .22) 0 2px, transparent 2px) 0 0 / 16px 16px,
        radial-gradient(circle, rgba(0, 229, 195, .18) 0 1px, transparent 1px) 8px 8px / 16px 16px;
    opacity: .24;
    filter: blur(.2px);
    pointer-events: none;
}

@media (max-width: 980px) {
    .cta-premium-shell {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-premium-copy h2 {
        max-width: none;
    }

    .cta-premium-visual::before {
        inset: 10% 4% 8% 10%;
    }
}

@media (max-width: 680px) {
    .cta-premium-shell {
        padding: 20px;
        border-radius: 24px;
    }

    .cta-premium-copy {
        padding: .5rem 0 0;
    }

    .cta-premium-copy h2 {
        font-size: clamp(2.1rem, 9vw, 3rem);
    }

    .cta-premium-actions {
        flex-direction: column;
    }

    .cta-premium-primary,
    .cta-premium-secondary {
        width: 100%;
    }

    .cta-premium-stack {
        grid-template-columns: 1fr;
    }

    .cta-premium-card-main {
        min-height: 0;
    }
}

/* Warehouse Process Flow: cleaner premium strip */
#rfid-process.warehouse-flow-showcase .warehouse-flow-header {
    max-width: 960px;
    margin-bottom: 38px;
}

#rfid-process.warehouse-flow-showcase .warehouse-flow-header h2 {
    font-size: clamp(2.6rem, 5vw, 4.1rem);
    letter-spacing: -.055em;
}

#rfid-process.warehouse-flow-showcase .warehouse-flow-header p {
    max-width: 72ch;
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    line-height: 1.78;
}

#rfid-process.warehouse-flow-showcase .workflow-timeline {
    position: relative;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
    padding-top: 30px;
}

#rfid-process.warehouse-flow-showcase .workflow-timeline::before {
    content: "";
    position: absolute;
    left: 42px;
    right: 42px;
    top: 74px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .16), transparent);
    pointer-events: none;
}

#rfid-process.warehouse-flow-showcase .workflow-step {
    position: relative;
    grid-column: auto;
    min-width: 0;
}

#rfid-process.warehouse-flow-showcase .workflow-step::before {
    display: none;
}

#rfid-process.warehouse-flow-showcase .workflow-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 34px 24px 24px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(30, 136, 255, .14), transparent 22%),
        linear-gradient(180deg, rgba(16, 34, 56, .96), rgba(8, 21, 36, .98));
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, .24),
        inset 0 1px 0 rgba(255, 255, 255, .05);
    backdrop-filter: blur(16px);
}

#rfid-process.warehouse-flow-showcase .workflow-card::before {
    display: none;
}

#rfid-process.warehouse-flow-showcase .workflow-card::after {
    display: none;
}

#rfid-process.warehouse-flow-showcase .workflow-step-number {
    display: none;
}

#rfid-process.warehouse-flow-showcase .workflow-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    border-radius: 20px;
}

#rfid-process.warehouse-flow-showcase .workflow-icon svg {
    width: 32px;
    height: 32px;
}

#rfid-process.warehouse-flow-showcase .workflow-card h3 {
    margin-bottom: 10px;
    font-size: 1.08rem;
    line-height: 1.25;
    letter-spacing: -.03em;
    font-weight: 800;
    text-wrap: balance;
    min-height: 2.5em;
}

#rfid-process.warehouse-flow-showcase .workflow-card p {
    flex: 1;
    max-width: none;
    font-size: .9rem;
    line-height: 1.62;
    color: #b8c5d6;
}

#rfid-process.warehouse-flow-showcase .workflow-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 229, 195, .22);
    box-shadow:
        0 34px 84px rgba(0, 0, 0, .32),
        inset 0 1px 0 rgba(255, 255, 255, .06);
}

#rfid-process.warehouse-flow-showcase .workflow-card:hover .workflow-icon {
    transform: rotate(-5deg) scale(1.03);
}

#rfid-process.warehouse-flow-showcase .workflow-connector {
    display: none;
}

@media (max-width: 1200px) {
    #rfid-process.warehouse-flow-showcase .workflow-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        padding-top: 10px;
    }

    #rfid-process.warehouse-flow-showcase .workflow-timeline::before,
    #rfid-process.warehouse-flow-showcase .workflow-step::before {
        display: none;
    }

    #rfid-process.warehouse-flow-showcase .workflow-connector {
        display: flex;
        align-items: center;
        justify-content: center;
        grid-column: 1 / -1;
        height: 68px;
    }

    #rfid-process.warehouse-flow-showcase .workflow-connector svg {
        width: 100%;
        height: 68px;
        transform: rotate(90deg);
    }
}

@media (max-width: 760px) {
    #rfid-process.warehouse-flow-showcase .warehouse-flow-header {
        margin-bottom: 30px;
    }

    #rfid-process.warehouse-flow-showcase .workflow-timeline {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    #rfid-process.warehouse-flow-showcase .workflow-connector {
        height: 52px;
    }

    #rfid-process.warehouse-flow-showcase .workflow-connector svg {
        height: 52px;
    }

    #rfid-process.warehouse-flow-showcase .workflow-card {
        padding: 26px 20px 22px;
        border-radius: 24px;
    }

    #rfid-process.warehouse-flow-showcase .workflow-step::before {
        left: 118px;
        top: 66px;
    }

    #rfid-process.warehouse-flow-showcase .workflow-icon {
        width: 66px;
        height: 66px;
        margin-bottom: 16px;
    }

    #rfid-process.warehouse-flow-showcase .workflow-icon svg {
        width: 30px;
        height: 30px;
    }

    #rfid-process.warehouse-flow-showcase .workflow-card h3 {
        font-size: 1.04rem;
    }

    #rfid-process.warehouse-flow-showcase .workflow-card p {
        font-size: .88rem;
    }
}

/* Smart POS section redesigned to match RFID showcase */
#smart-pos.smart-pos-showcase {
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 8vw, 7.5rem) 0;
    color: #fff;
    background:
        radial-gradient(circle at 12% 14%, rgba(30, 136, 255, .22), transparent 18%),
        radial-gradient(circle at 86% 18%, rgba(0, 229, 195, .16), transparent 20%),
        radial-gradient(circle at 62% 82%, rgba(30, 136, 255, .14), transparent 22%),
        linear-gradient(180deg, #06101d 0%, #071827 50%, #081423 100%);
}

#smart-pos.smart-pos-showcase::before,
#smart-pos.smart-pos-showcase::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

#smart-pos.smart-pos-showcase::before {
    top: -140px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 255, 255, .06), transparent 68%);
    filter: blur(2px);
}

#smart-pos.smart-pos-showcase::after {
    left: -140px;
    bottom: -160px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 229, 195, .08), transparent 70%);
    filter: blur(2px);
}

#smart-pos.smart-pos-showcase .container {
    position: relative;
    z-index: 1;
}

#smart-pos.smart-pos-showcase .smart-pos-showcase-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
    gap: 28px;
    align-items: end;
    margin-bottom: 42px;
}

#smart-pos.smart-pos-showcase .smart-pos-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #7fc7ff;
    font-size: .78rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: .16em;
    text-transform: uppercase;
}

#smart-pos.smart-pos-showcase .smart-pos-kicker > span {
    width: 26px;
    height: 2px;
    background: linear-gradient(90deg, #1E88FF, #00E5C3);
}

#smart-pos.smart-pos-showcase h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: .98;
    letter-spacing: -.06em;
}

#smart-pos.smart-pos-showcase .smart-pos-intro p {
    max-width: 62ch;
    margin: 0;
    color: #a8b3c7;
    font-size: clamp(1rem, 1.2vw, 1.0625rem);
    line-height: 1.78;
}

#smart-pos.smart-pos-showcase .smart-pos-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

#smart-pos.smart-pos-showcase .smart-pos-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 999px;
    color: #dce7f4;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    font-size: .98rem;
    font-weight: 800;
}

#smart-pos.smart-pos-showcase .smart-pos-text-link:hover {
    color: #fff;
    border-color: rgba(94, 232, 193, .28);
    background: rgba(255, 255, 255, .06);
}

#smart-pos.smart-pos-showcase .smart-pos-showcase-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    gap: 24px;
    align-items: center;
}

#smart-pos.smart-pos-showcase .smart-pos-visual {
    position: relative;
    padding: 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, .08);
    background:
        linear-gradient(180deg, rgba(20, 32, 52, .72), rgba(10, 24, 38, .92));
    box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
    backdrop-filter: blur(16px);
}

#smart-pos.smart-pos-showcase .smart-pos-visual::before,
#smart-pos.smart-pos-showcase .smart-pos-visual::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}

#smart-pos.smart-pos-showcase .smart-pos-visual::before {
    top: 24px;
    left: 24px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(255, 255, 255, .07);
    box-shadow: 0 0 0 26px rgba(30, 136, 255, .05), 0 0 0 56px rgba(0, 229, 195, .03);
}

#smart-pos.smart-pos-showcase .smart-pos-visual::after {
    right: 24px;
    bottom: 24px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(0, 229, 195, .08), transparent 68%);
}

#smart-pos.smart-pos-showcase .smart-pos-image {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 620px;
    object-fit: cover;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .2);
}

#smart-pos.smart-pos-showcase .smart-pos-live-status,
#smart-pos.smart-pos-showcase .smart-pos-scan-status {
    position: absolute;
    z-index: 2;
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(8, 21, 36, .82);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .24);
    backdrop-filter: blur(14px);
}

#smart-pos.smart-pos-showcase .smart-pos-live-status {
    top: 24px;
    left: 24px;
    min-width: 142px;
}

#smart-pos.smart-pos-showcase .smart-pos-live-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #dce7f4;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

#smart-pos.smart-pos-showcase .smart-pos-live-label span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00E5C3;
    box-shadow: 0 0 0 6px rgba(0, 229, 195, .12);
}

#smart-pos.smart-pos-showcase .smart-pos-live-status strong {
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: -.05em;
}

#smart-pos.smart-pos-showcase .smart-pos-live-status small {
    color: #a8b3c7;
    font-size: .82rem;
}

#smart-pos.smart-pos-showcase .smart-pos-scan-status {
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
}

#smart-pos.smart-pos-showcase .smart-pos-scan-status svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #00E5C3;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#smart-pos.smart-pos-showcase .smart-pos-scan-status strong {
    display: block;
    color: #fff;
    font-size: .98rem;
    line-height: 1.2;
}

#smart-pos.smart-pos-showcase .smart-pos-scan-status span {
    display: block;
    color: #a8b3c7;
    font-size: .82rem;
}

#smart-pos.smart-pos-showcase .smart-pos-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

#smart-pos.smart-pos-showcase .smart-pos-feature-card {
    position: relative;
    min-height: 100%;
    padding: 28px 24px 24px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(30, 136, 255, .12), transparent 28%),
        linear-gradient(180deg, rgba(20, 32, 52, .72), rgba(10, 24, 38, .92));
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .18);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

#smart-pos.smart-pos-showcase .smart-pos-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(30, 136, 255, .08), transparent 28%),
        radial-gradient(circle at bottom left, rgba(0, 229, 195, .08), transparent 26%);
    pointer-events: none;
}

#smart-pos.smart-pos-showcase .smart-pos-feature-number {
    position: absolute;
    top: 21px;
    right: 23px;
    color: #aac0d5;
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .1em;
}

#smart-pos.smart-pos-showcase .smart-pos-feature-card h3 {
    position: relative;
    margin-bottom: 12px;
    color: #fff;
    font-size: 1.12rem;
    line-height: 1.28;
    letter-spacing: -.02em;
    font-weight: 800;
}

#smart-pos.smart-pos-showcase .smart-pos-feature-card p {
    position: relative;
    margin: 0;
    color: #b8c5d6;
    font-size: .9rem;
    line-height: 1.65;
}

#smart-pos.smart-pos-showcase .smart-pos-flow-preview {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-top: 24px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

#smart-pos.smart-pos-showcase .smart-pos-flow-label {
    display: grid;
    gap: 6px;
}

#smart-pos.smart-pos-showcase .smart-pos-flow-label span {
    color: #7fc7ff;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

#smart-pos.smart-pos-showcase .smart-pos-flow-label strong {
    color: #fff;
    font-size: 1rem;
    line-height: 1.3;
}

#smart-pos.smart-pos-showcase .smart-pos-flow-preview ol {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#smart-pos.smart-pos-showcase .smart-pos-flow-preview li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .05);
    color: #dce7f4;
    font-size: .9rem;
    font-weight: 700;
}

#smart-pos.smart-pos-showcase .smart-pos-flow-preview li span {
    color: #00E5C3;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .16em;
}

#smart-pos.smart-pos-showcase .smart-pos-showcase-grid {
    margin-top: 0;
}

#smart-pos.smart-pos-showcase .smart-pos-flow-preview {
    margin-top: 22px;
}

@media (max-width: 1100px) {
    #smart-pos.smart-pos-showcase .smart-pos-showcase-heading,
    #smart-pos.smart-pos-showcase .smart-pos-showcase-grid {
        grid-template-columns: 1fr;
    }

    #smart-pos.smart-pos-showcase .smart-pos-intro {
        max-width: 860px;
    }
}

@media (max-width: 760px) {
    #smart-pos.smart-pos-showcase .smart-pos-image {
        min-height: 420px;
    }

    #smart-pos.smart-pos-showcase .smart-pos-feature-grid {
        grid-template-columns: 1fr;
    }

    #smart-pos.smart-pos-showcase .smart-pos-flow-preview {
        flex-direction: column;
        align-items: flex-start;
    }

    #smart-pos.smart-pos-showcase .smart-pos-flow-preview ol {
        gap: 10px;
    }

    #smart-pos.smart-pos-showcase .smart-pos-flow-preview li {
        padding: 9px 12px;
        font-size: .86rem;
    }

    #smart-pos.smart-pos-showcase h2 {
        font-size: clamp(2.4rem, 9vw, 3.3rem);
    }
}

/* White-theme override for Smart POS */
#smart-pos.smart-pos-showcase {
    color: #0f172a;
    background:
        radial-gradient(circle at 12% 10%, rgba(30, 136, 255, .08), transparent 24%),
        radial-gradient(circle at 88% 18%, rgba(0, 229, 195, .05), transparent 22%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

#smart-pos.smart-pos-showcase .smart-pos-kicker {
    color: #1e88ff;
}

#smart-pos.smart-pos-showcase h2 {
    color: #0f172a;
}

#smart-pos.smart-pos-showcase .smart-pos-intro p {
    color: #53647a;
}

#smart-pos.smart-pos-showcase .smart-pos-text-link {
    color: #0f172a;
    background: rgba(255, 255, 255, .88);
    border-color: rgba(30, 136, 255, .12);
    box-shadow: 0 14px 32px rgba(30, 136, 255, .08);
}

#smart-pos.smart-pos-showcase .smart-pos-text-link:hover {
    color: #1e88ff;
    background: rgba(255, 255, 255, .98);
    border-color: rgba(30, 136, 255, .16);
}

#smart-pos.smart-pos-showcase .smart-pos-visual {
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .94));
    border-color: rgba(148, 163, 184, .18);
    box-shadow: 0 26px 66px rgba(15, 23, 42, .08);
}

#smart-pos.smart-pos-showcase .smart-pos-live-status,
#smart-pos.smart-pos-showcase .smart-pos-scan-status {
    border-color: rgba(148, 163, 184, .16);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
}

#smart-pos.smart-pos-showcase .smart-pos-live-label {
    color: #0f172a;
}

#smart-pos.smart-pos-showcase .smart-pos-live-status strong,
#smart-pos.smart-pos-showcase .smart-pos-scan-status strong {
    color: #0f172a;
}

#smart-pos.smart-pos-showcase .smart-pos-live-status small,
#smart-pos.smart-pos-showcase .smart-pos-scan-status span {
    color: #53647a;
}

#smart-pos.smart-pos-showcase .smart-pos-scan-status svg {
    stroke: #1e88ff;
}

#smart-pos.smart-pos-showcase .smart-pos-feature-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .97), rgba(255, 255, 255, .91));
    border-color: rgba(148, 163, 184, .16);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .06);
}

#smart-pos.smart-pos-showcase .smart-pos-feature-card::before {
    background:
        radial-gradient(circle at top right, rgba(30, 136, 255, .08), transparent 28%),
        radial-gradient(circle at bottom left, rgba(0, 229, 195, .08), transparent 26%);
}

#smart-pos.smart-pos-showcase .smart-pos-feature-number {
    color: #aac0d5;
}

#smart-pos.smart-pos-showcase .smart-pos-feature-card h3 {
    color: #0f172a;
}

#smart-pos.smart-pos-showcase .smart-pos-feature-card p {
    color: #55657b;
}

#smart-pos.smart-pos-showcase .smart-pos-flow-preview {
    background: rgba(255, 255, 255, .98);
    border-color: rgba(148, 163, 184, .18);
    box-shadow:
        0 18px 42px rgba(15, 23, 42, .06),
        inset 0 1px 0 rgba(255, 255, 255, .7);
}

#smart-pos.smart-pos-showcase .smart-pos-flow-label span {
    color: #1e88ff;
}

#smart-pos.smart-pos-showcase .smart-pos-flow-label strong {
    color: #0f172a;
}

#smart-pos.smart-pos-showcase .smart-pos-flow-preview li {
    color: #0f172a;
    background: rgba(248, 251, 255, .98);
    border-color: rgba(148, 163, 184, .18);
}

#smart-pos.smart-pos-showcase .smart-pos-flow-preview li span {
    color: #00bfa5;
}

#smart-pos.smart-pos-showcase .smart-pos-visual::before {
    border-color: rgba(148, 163, 184, .14);
    box-shadow:
        0 0 0 26px rgba(30, 136, 255, .04),
        0 0 0 56px rgba(0, 229, 195, .025);
}

#smart-pos.smart-pos-showcase .smart-pos-visual::after {
    background: radial-gradient(circle, rgba(0, 229, 195, .06), transparent 68%);
}

@media (max-width: 760px) {
    #smart-pos.smart-pos-showcase .smart-pos-image {
        min-height: 420px;
    }
}
