@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=PT+Serif+Caption:ital@0;1&family=ZCOOL+XiaoWei&display=swap");

:root {
    --bg: #07111f;
    --bg-2: #0b1830;
    --card: rgba(255, 255, 255, 0.08);
    --card-border: rgba(255, 255, 255, 0.12);
    --text: #eef4ff;
    --muted: #333;
    --primary: #2d427e;
    --primary-1: #333;
    --primary-2: #222;
    --accent: #ffb84d;
    --accent-2: #ff7a00;
    --success: #6ee7b7;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    --radius: 22px;
    --max: 1200px;
    --text: #000;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Arial,
        sans-serif;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(59, 130, 246, 0.22),
            transparent 24%
        ),
        radial-gradient(
            circle at 82% 16%,
            rgba(255, 122, 0, 0.16),
            transparent 22%
        ),
        radial-gradient(
            circle at 50% 75%,
            rgba(101, 216, 255, 0.12),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(238, 238, 245, 0.5) 35%,
            rgba(255, 255, 255, 0.5) 100%
        );
    color: var(--text);
    overflow-x: hidden;
}

/* ======================================
   DIGITAL GRID BACKGROUND
====================================== */

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.12) 1px, transparent 1px);
    background-size: 90px 90px;
    opacity: 0.4;
    pointer-events: none;
    z-index: -2;
}

/* ======================================
   MOUSE LIGHT FOLLOW
====================================== */

.mouse-light {
    position: fixed;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(101, 216, 255, 0.25),
        rgba(59, 130, 246, 0.18),
        transparent 70%
    );
    filter: blur(90px);
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
}

/* =========================
NAV BASE
========================= */

.nav {
    position: relative;
    top: 0;
    z-index: 1000;

    /* background: rgba(10, 15, 25, 0.85); */
    /* backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.06); */
}

.nav .container {
    max-width: 1200px;
    margin: 20px auto 0 auto;
    padding: 0 24px;

    position: fixed;
    left: 50%;
    transform: translateX(-50%);

    /* GLASS EFFECT */
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-radius: 60px;

    /* subtle border (very important) */
    border: 1px solid rgba(255, 255, 255, 0.25);

    /* shadow */
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);

    z-index: 1000;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    height: 52px;
}

.logo img {
    height: 28px;
    margin-top: -8px;
}

/* =========================
MENU
========================= */
/* =========================
RESET
========================= */

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

ul {
    list-style: none;
}

/* =========================
LOGO
========================= */

/* =========================
MENU
========================= */

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

.nav-menu li {
    position: relative;
}

.nav-link {
    color: #666;
    font-weight: 400;
    cursor: pointer;
    transition: 0.2s;
    font-size: 10pt;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
}

.nav-link:hover {
    color: #00d4ff;
}

/* =========================
ACTIONS
========================= */

.nav-actions {
    display: flex;
    gap: 12px;
}

.nav-actions .lang-switch,
.nav-actions .lang-link {
    color: #666;
    font-weight: 400;
    font-size: 10pt;
    font-family: "Inter", sans-serif;
}

.nav-actions .lang-link.active {
    color: #000;
    font-weight: 600;
}

.nav-actions .divider {
    color: #666;
}

.nav-actions .btn-primary,
.mobile-nav-actions .btn-primary {
    border-radius: 60px;
    font-size: 10pt;
    padding: 12px 30px;
    font-family: "Montserrat", sans-serif;
}

.nav-actions .btn-outline,
.mobile-nav-actions .btn-outline {
    font-family: "Montserrat", sans-serif;

    border-radius: 60px;
    padding: 12px 30px;
    font-size: 10pt;
    border: 1px solid var(--primary);
    color: var(--primary);
}

/* hide mobile menu actions on desktop */
.mobile-nav-actions {
    display: none;
}

/* show only inside mobile nav */
@media (max-width: 900px) {
    .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 14px;
        width: 100%;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .mobile-nav-actions .mobile-lang {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #666;
        font-size: 10pt;
    }

    .mobile-nav-actions .lang-link.active {
        color: #000;
        font-weight: 600;
    }

    .mobile-nav-actions .btn-outline,
    .mobile-nav-actions .btn-primary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* =========================
SECTION
========================= */
.nx-org {
    padding: 120px 0;
    background: #0f4f4f;
}

.nx-org .container {
    position: relative;
}

/* =========================
CARDS
========================= */
.nx-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    color: #fff;
    width: 240px;
    margin: auto;
}

/* =========================
TOP
========================= */
.nx-top {
    text-align: center;
    margin-bottom: 30px;
}

/* =========================
BOX
========================= */
.nx-box {
    position: relative;
    width: 85%;
    margin: 60px auto -40px auto;
    padding: 60px 0 0px 0;
    z-index: 88;
}

/* =========================
GRID (3 BOXES)
========================= */
.nx-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

/* =========================
LINES
========================= */
.nx-line {
    position: absolute;
}
.nx-line-2 {
    position: absolute;
    border-left: 1px dashed rgba(0, 0, 0, 0.5);
    height: 60px;
    top: -15px;
}
.nx-line-2.left {
    position: absolute;
    left: 10%;
}
.nx-line-2.right {
    position: absolute;
    right: 10%;
}

.nx-line.vertical {
    top: -60px;
    left: 50%;
    height: 110px;
    border-left: 1px dashed rgba(0, 0, 0, 0.5);
}

.nx-line.horizontal {
    top: -20px;
    left: 50%;
    width: 80%;
    transform: translateX(-50%);
    border-top: 1px dashed rgba(0, 0, 0, 0.5);
}

/* =========================
DOTS
========================= */
.nx-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2d427e;
    position: absolute;
    z-index: 99;
}

/* TOP DOT */
.nx-dot-top {
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
}

/* 3 DOTS */
.nx-dot-left {
    top: 40px;
    left: 9.5%;
}

.nx-dot-center {
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.nx-dot-right {
    top: 40px;
    right: 9.5%;
}

.nx-dot-center {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.nx-line {
    animation: dash 3s linear infinite;
}

@keyframes dash {
    from {
        stroke-dashoffset: 10;
    }
    to {
        stroke-dashoffset: 0;
    }
}

.ai-btn {
    gap: 10px;

    padding: 16px 28px;
    border-radius: 999px;

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

    color: #fff;
    text-decoration: none;

    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    margin-right: 10px;
}

.ai-btn-purple {
    background: linear-gradient(90deg, #7c3aed, #ff6a88);

    box-shadow:
        0 10px 20px rgba(124, 58, 237, 0.35),
        0 0 20px rgba(255, 106, 136, 0.25);
}

.ai-btn-purple:hover {
    transform: translateY(-2px) scale(1.02);

    box-shadow:
        0 15px 30px rgba(124, 58, 237, 0.45),
        0 0 40px rgba(255, 106, 136, 0.35);
}

.ai-btn-blue {
    background: linear-gradient(90deg, #2d427e, #333);
    box-shadow:
        0 10px 20px rgba(37, 99, 235, 0.35),
        0 0 20px rgba(34, 211, 238, 0.25);
}

.ai-btn-blue:hover {
    transform: translateY(-2px) scale(1.02);

    box-shadow:
        0 15px 30px rgba(37, 99, 235, 0.45),
        0 0 40px rgba(34, 211, 238, 0.35);
}

.ai-btn:hover span {
    transform: translateX(6px);
}

.ai-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );

    transform: skewX(-20deg);
    transition: 0.6s;
}

.ai-btn:hover::before {
    left: 120%;
}
.ai-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 28px;
    border-radius: 999px;

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

    background: transparent;
    color: #000;

    border: 1.5px solid rgba(0, 0, 0, 0.5);

    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* gradient layer */
.ai-btn-outline::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(90deg, #333, #000);

    opacity: 0;
    transition: 0.35s ease;

    z-index: -1; /* 🔥 THIS FIXES EVERYTHING */
}

/* TEXT ALWAYS ABOVE */
.ai-btn-outline > * {
    position: relative;
    z-index: 2;
}

/* hover state */
.ai-btn-outline:hover {
    color: #ffffff; /* force white */
    border-color: transparent;
}

.ai-btn-outline:hover::before {
    opacity: 1;
}

/* arrow animation */
.ai-btn-outline span {
    transition: transform 0.3s ease;
}

.ai-btn-outline:hover span {
    transform: translateX(6px);
}

/* =========================
MEGA MENU (DESKTOP)
========================= */

.has-mega {
    position: static; /* IMPORTANT */
}

/* hover bridge (prevents flicker) */
.has-mega::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 25px;
}

/* mega panel */
.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 20px); /* gap below nav */

    width: 100%;
    min-width: 800px;
    padding: 50px 0;

    background: #0b1f3a;
    border-radius: 16px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: all 0.3s ease;

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* show */
.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* inner grid */
.mega-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

/* column */
.mega-col h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 6px;
}

.mega-col p {
    font-size: 13px;
    color: #7a9bbe;
    margin-bottom: 16px;
}

/* list */
.mega-col ul li {
    padding: 8px 0;
    color: #eaf6ff;
    cursor: pointer;
    transition: 0.2s;
}

.mega-col ul li:hover {
    color: #00d4ff;
    transform: translateX(4px);
}

/* =========================
NAV ACTIONS
========================= */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 999px;
    color: white;
    font-size: 14px;
}

/* =========================
HAMBURGER
========================= */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: none;
    background: none;
    cursor: pointer;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: black;
    display: block;
}

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

.mobile-actions {
    display: none;
    align-items: center;
    gap: 10px;
}

.mobile-demo {
    font-size: 13px;
    padding: 6px 12px;
}

/* ======================================
   DASHBOARD AURA ROTATION
====================================== */
.ai-aura-wrap {
    position: relative;
}

/* rotating color aura */
.ai-aura-wrap::before {
    content: "";
    position: absolute;

    top: 0px;
    left: -120px;
    right: -120px;
    bottom: -120px;

    background: conic-gradient(
        rgba(0, 174, 239, 0.4),
        #efefef,
        rgba(0, 174, 239, 0.4)
    );

    animation: spinAura 10s linear infinite;

    filter: blur(60px);
    opacity: 0.3;

    z-index: -3;
    pointer-events: none; /* IMPORTANT */
}

/* image */
.ai-aura-wrap img {
    position: relative;
    z-index: 2;

    border-top-left-radius: 3em;
    border-bottom-right-radius: 3em;
}

/* animation */
@keyframes spinAura {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes airshopAuraRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.pt-100 {
    padding-top: 100px;
}

/* ======================================
   WATER RIPPLE LIGHT EFFECT
====================================== */

.dashboard::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--x) var(--y),
        rgba(101, 216, 255, 0.2),
        transparent 42%
    );
    opacity: 0;
    transition: opacity 0.25s;
    pointer-events: none;
}

.dashboard:hover::after {
    opacity: 1;
}

/* ======================================
   INDUSTRY SLIDE PANEL
====================================== */

.industry-panel {
    position: fixed;
    right: -480px;
    top: 0;
    width: 460px;
    height: 100%;
    background: #0b1830;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    transition: 0.45s;
    padding: 40px;
    z-index: 200;
    overflow: auto;
}

.industry-panel.active {
    right: 0;
}

.panel-close {
    cursor: pointer;
    font-size: 20px;
    margin-bottom: 20px;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        rgba(101, 216, 255, 1),
        rgba(59, 130, 246, 1) 40%,
        rgba(255, 184, 77, 1)
    );
    box-shadow:
        0 0 20px rgba(101, 216, 255, 0.35),
        0 0 40px rgba(59, 130, 246, 0.15);
    position: relative;
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 8px;
    background: rgba(7, 17, 31, 0.85);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    color: var(--muted);
    font-size: 14px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.25s ease;
    border: 1px solid transparent;
}

.btn-outline {
    border-color: rgba(0, 0, 0, 0.14);
    color: var(--text);
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.4);
    font-size: 12pt;
}

p.credit {
    padding-top: 40px;
    font-size: 10pt;
}

.btn-outline:hover {
    border-color: rgba(0, 0, 0, 0.22);
    background: rgba(255, 255, 255, 0.06);
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-2) 45%,
        var(--primary)
    );
    color: #fff;
    padding: 5px 50px;
    box-shadow:
        0 10px 28px rgba(59, 130, 246, 0.28),
        0 0 40px rgba(101, 216, 255, 0.18);

    font-size: 12pt;
}

.btn-primary:hover,
.btn-outline:hover {
    transform: translateY(-2px);
    filter: saturate(1.06);
}

.hero {
    padding: 150px 0 70px;
    position: relative;
    overflow: hidden;
}

.hero-about {
    padding: 150px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-about h4 {
    font-size: 24pt;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
}

.hero-about h1 {
    width: 70%;
    font-weight: 400;
    font-size: 52pt;
    margin-bottom: 30px;
    font-family: "Inter", sans-serif;
}

.hero-about p {
    width: 70%;
    font-size: 14pt;
    color: var(--muted);
    line-height: 1.5;
    font-family: "Montserrat", sans-serif;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.hero-visual {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-check {
    margin-top: 40px;
}
.hero-check p {
    font-size: 12pt;
}
.hero-check i {
    color: #00ff88;
}

.career-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.career-section {
    position: relative;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 45px;
}

.career-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    transition: 0.3s ease;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}

.career-card h3 {
    font-size: 20pt;
    margin-bottom: 14px;
    font-family: "Inter", sans-serif;
}

.career-card p {
    color: var(--muted);
    line-height: 1.7;
    font-family: "Montserrat", sans-serif;
}

.career-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20pt;
    margin-bottom: 22px;
}

.career-band {
    background: rgba(37, 99, 235, 0.04);
}

.career-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.career-split h2 {
    font-size: 36pt;
    margin: 14px 0 18px;
}

.career-split p {
    color: var(--muted);
    line-height: 1.7;
}

.career-list {
    display: grid;
    gap: 14px;
}

.career-list div {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    padding: 17px 20px;
    color: var(--muted);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.career-cta {
    text-align: center;
    border-radius: 28px;
    padding: 75px 30px;
    background: linear-gradient(
        135deg,
        rgba(37, 99, 235, 0.08),
        rgba(14, 165, 233, 0.08)
    );
    border: 1px solid rgba(37, 99, 235, 0.12);
}

.career-cta h2 {
    margin-top: 12px;
}

.career-cta p {
    max-width: 760px;
    margin: 18px auto 0;
    color: var(--muted);
    line-height: 1.7;
}

.career-cta-actions {
    padding-top: 40px;
}

.career-empty {
    max-width: 760px;
    margin: 45px auto 0;
    padding: 46px 34px;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.career-empty-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 22px;
    border-radius: 18px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24pt;
}

.career-empty h3 {
    font-size: 24pt;
    margin-bottom: 14px;
}

.career-empty p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--muted);
    line-height: 1.7;
}

.career-empty-actions {
    margin-top: 32px;
}

.career-interest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 38px;
}

.career-interest-grid .career-card {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.72);
}

@media (max-width: 991px) {
    .career-interest-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .hero-about h1,
    .hero-about p {
        width: 100%;
    }

    .career-grid,
    .career-split {
        grid-template-columns: 1fr;
    }

    .career-split h2 {
        font-size: 30pt;
    }
}

@media (max-width: 575px) {
    .hero-about {
        padding: 110px 0 60px;
    }

    .hero-about h4 {
        font-size: 18pt;
    }

    .hero-about h1 {
        font-size: 34pt;
    }

    .career-card,
    .career-cta {
        padding: 26px;
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #333;
    padding: 8px 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.04);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.05);
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 12px var(--success);
}

.hero-grid h1 {
    margin: 18px 0 16px;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.08;
    max-width: 12ch;
    color: var(--text);
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.hero-grid h1 small {
    font-size: 14pt;
}

.hero-grid h1 strong {
    font-weight: 600;
}
.hero p {
    margin: 0 0 20px 0;
    font-size: 12pt;
    line-height: 1.5;
    color: var(--muted);
    max-width: 620px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
}

.hero-cta {
    margin-top: 28px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 34px;
    font-size: 12pt;
}

.stat {
    padding: 18px 18px;
    border-radius: 18px;
    border: 1px solid var(--card-border);
    background: var(--card);
    box-shadow: var(--shadow);
}

.stat strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 6px;
}

.stat span {
    color: var(--muted);
    font-size: 14px;
}

.hero-visual {
    position: relative;
    min-height: 580px;
}

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(50px);
    opacity: 0.7;
    pointer-events: none;
}

.orb-1 {
    width: 240px;
    height: 240px;
    background: rgba(59, 130, 246, 0.34);
    top: 30px;
    right: 30px;
}

.orb-2 {
    width: 220px;
    height: 220px;
    background: rgba(255, 122, 0, 0.2);
    bottom: 40px;
    left: 40px;
}

.glass {
    border: 1px solid var(--card-border);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.7),
        rgba(255, 255, 255, 0.6)
    );
    backdrop-filter: blur(18px);
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.dashboard {
    position: absolute;
    inset: 40px 10px 20px 20px;
    padding: 18px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.dash-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.dash-title {
    font-weight: 700;
    font-size: 16px;
}

/* ==============================
   LIVE AI INDICATOR
============================== */

.dash-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-size: 12px;
    color: #333;

    border: 1px solid rgba(101, 216, 255, 0.28);
    padding: 8px 12px;
    border-radius: 999px;

    background: rgba(101, 216, 255, 0.08);
}

/* green blinking dot */

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;

    box-shadow:
        0 0 6px #00ff88,
        0 0 14px rgba(0, 255, 136, 0.7);

    animation: liveBlink 1.4s infinite;
}

/* pulse animation */

@keyframes liveBlink {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.7;
    }
}

.dash-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 16px;
    height: calc(100% - 42px);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.dash-grid.active {
    opacity: 1;
    transform: translateY(0);
}

/* chart bars start from 0 */

.bar {
    height: 0;
    transition: height 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.panel {
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.16);
    padding: 16px;
}

.panel + .panel {
    margin-top: 16px;
}

.panel h3 {
    margin: 0 0 12px;
    font-size: 15px;
}

.chart {
    height: 160px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    padding-top: 16px;
    margin-bottom: 16px;
}

.bar {
    flex: 1;
    border-radius: 14px 14px 8px 8px;
    background: linear-gradient(
        180deg,
        rgba(101, 216, 255, 0.95),
        rgba(59, 130, 246, 0.75)
    );
    box-shadow: 0 0 20px rgba(101, 216, 255, 0.18);
    position: relative;
}

.bar:nth-child(2n) {
    background: linear-gradient(
        180deg,
        rgba(255, 184, 77, 0.95),
        rgba(255, 122, 0, 0.8)
    );
    box-shadow: 0 0 20px rgba(255, 184, 77, 0.18);
}

.bar::after {
    content: attr(data-value);
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #333;
}

.mini-cards {
    display: grid;
    gap: 12px;
}

.mini-card {
    border-radius: 16px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.mini-card strong {
    display: block;
    margin-bottom: 4px;
}

.mini-card span {
    color: #666;
    font-size: 13px;
}

/* mini cards start hidden */

.mini-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

/* active */

.mini-card.active {
    opacity: 1;
    transform: translateY(0);
}

/* typing cursor */

.typing::after {
    content: "|";
    margin-left: 4px;
    animation: blink 1s infinite;
}

/* hide badge initially */
.mini-card .badge {
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.3s ease;
    font-size: 6.5pt;
    color: #fff;
    margin-top: 5px;
}

/* show badge */
.mini-card.active .badge {
    opacity: 1;
    transform: translateY(0);
}

@keyframes blink {
    0%,
    50%,
    100% {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}

.floating-card {
    position: absolute;
    border-radius: 20px;
    padding: 14px 16px;
    min-width: 180px;
}

.float-1 {
    left: -20px;
    bottom: 80px;
}
.float-2 {
    right: -10px;
    bottom: -20px;
}

.float-3 {
    left: -20px;
    bottom: 100px;
}
.float-4 {
    right: -50px;
    bottom: 10px;
}

.logos {
    padding: 28px 0 8px;
}

.logo-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.logo-chip {
    padding: 18px;
    text-align: center;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #d4deef;
    font-weight: 600;
}

section {
    padding: 82px 0;
}

/* ==============================
   AI GRID SQUARE BACKGROUND
============================== */

.section {
    position: relative;

    /* dark blue glass panel */

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.75),
        rgba(255, 255, 255, 0.5)
    );

    /* subtle border */

    border: 1px solid rgba(120, 180, 255, 0.12);

    overflow: hidden;
}

/* grid squares */

/* glow overlay */

.section::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 20% 10%,
            rgba(0, 174, 239, 0.12),
            transparent 40%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(59, 130, 246, 0.1),
            transparent 40%
        );

    pointer-events: none;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.section-head h2,
.px-why-section h2 {
    margin: 0 0 10px;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-family: "Inter", sans-serif;
}

.section-head p {
    margin-bottom: 20px;
    color: var(--muted);
    font-family: "Montserrat", sans-serif;
    font-size: 12pt;
}

.modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.ai-head h4 {
    margin-bottom: 20px;
}
.ai-head h2 {
    margin-bottom: 5px !important;
}
.ai-head .small {
    padding-bottom: 10px !important;
}
.pt-30 {
    padding-top: 30px;
}
.module {
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.07),
        rgba(255, 255, 255, 0.03)
    );
    box-shadow: var(--shadow);
    transition: 0.3s ease;
}

.module:hover {
    transform: translateY(-4px);
    border-color: rgba(101, 216, 255, 0.24);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.28),
        0 0 30px rgba(101, 216, 255, 0.1);
}

.icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    background: linear-gradient(
        135deg,
        rgba(101, 216, 255, 0.18),
        rgba(59, 130, 246, 0.18),
        rgba(255, 184, 77, 0.18)
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 20px;
}

.module h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
}

.module p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
}

.showcase {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: center;
}

.showcase-card {
    padding: 22px;
    border: 1px solid var(--card-border);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.7),
        rgba(255, 255, 255, 0.6)
    );
    backdrop-filter: blur(18px);
    border-radius: 26px;
    /* box-shadow: var(--shadow); */
}

.feature-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature span {
    line-height: 1.4;
}

.feature:last-child {
    border-bottom: none;
}

.tick {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    flex: 0 0 22px;
    display: grid;
    place-items: center;
    background: rgba(110, 231, 183, 0.14);
    color: var(--success);
    border: 1px solid rgba(110, 231, 183, 0.2);
    font-size: 12px;
    margin-top: 2px;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.metric {
    padding: 18px;
    border-radius: 18px;

    border: 1px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    text-align: left;
    line-height: 1.5;
}

.metric::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.28),
        rgba(56, 189, 248, 0.12),
        rgba(255, 255, 255, 0.2)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.metric:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.metric strong {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-family: "Inter", sans-serif;
}

.metric span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    font-family: "Montserrat", sans-serif;
}

.industries {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.industry {
    padding: 22px 18px;
    text-align: center;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.07),
        rgba(255, 255, 255, 0.03)
    );
    transition: 0.25s ease;
}

/* floating cards hidden initially */

.float-reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==============================
   AI SECTION HEADER
============================== */

.ai-head {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.ai-head-box {
    max-width: 780px;
    padding: 40px 45px;

    border: 1px solid var(--card-border);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.7),
        rgba(255, 255, 255, 0.6)
    );
    backdrop-filter: blur(18px);
    border-radius: 26px;
    /* box-shadow: var(--shadow); */

    position: relative;

    overflow: hidden;
}

/* ITEMS */
.pos-item,
.flow-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* important */
    padding: 15px;
    font-size: 10pt;

    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin-bottom: 10px;
    line-height: 1.5;
    position: relative;
    font-family: "Montserrat", sans-serif;
}
.pos-item-area {
    border: 1px solid rgba(79, 124, 255, 0.2);
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
}
.pos-item-area strong {
    display: block;
    margin-bottom: 5px;
    font-size: 11pt;
}
.pos-item .edit {
    position: absolute;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 8pt;
}
.pos-notes {
    font-size: 8pt;
    text-align: right;
    font-style: italic;
    padding-top: 5px;
    padding-right: 15px;
    color: #999;
}
.flow-desc {
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(79, 124, 255, 0.2);
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 10pt;
    color: #6b7280;
    line-height: 1.5;
}
.pos-btn .btn {
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
}
.pos-btn .btn.btn-block {
    display: inline-block;
    border: 1px solid #efefef;
    width: 48%;
    margin-bottom: 10px;
    text-align: center;
    font-size: 8pt;
}
.pos-btn .btn.btn-block.active,
.pos-btn .btn.btn-block:hover {
    background: rgba(0, 0, 0, 0.3);
    color: #000;
}
.pos-btn .btn.btn-block.mr-1p {
    margin-right: 2% !important;
}
/* LEFT TEXT */
.pos-item span:first-child {
    text-align: left;
    font-weight: 500;
}
.pos-item .small {
    color: #666;
    font-size: 8pt;
}
/* RIGHT SIDE (price + actions) */
.pos-item span:last-child {
    text-align: right;
    display: flex;
    flex-direction: column; /* stack vertically */
    align-items: flex-end; /* push to right */
}

/* TOTAL */
.pos-total {
    margin-top: 10px;
    font-size: 16px;
    text-align: right;
    padding-right: 15px;
}

/* BUTTON */
.pos-checkout {
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    border-radius: 10px;
    background: #4f7cff;
    color: #fff;
    border: none;
}
.hero-lead {
    margin-bottom: 20px;
    line-height: 1.5;
}
.flow-title {
    margin-bottom: 5px;
    font-family: "Inter", sans-serif;
}
.flow-sub {
    margin-bottom: 20px;
}
.compare-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* PRIMARY */
.compare-actions .ai-btn-blue {
    background: #4f7cff;
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.2s;
}

.compare-actions .ai-btn-blue:hover {
    background: #3b63e6;
}

/* OUTLINE */
.compare-actions .ai-btn-outline {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    text-decoration: none;
    color: #333;
    transition: 0.2s;
}

.compare-actions .ai-btn-outline:hover {
    border-color: #4f7cff;
    color: #4f7cff;
}

.price-note {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
    text-align: right;
    margin-top: 5px;
}

.price-note strong {
    font-size: 18px;
    color: #4f7cff;
}

.price-note small {
    display: block;
    font-size: 12px;
    color: #777;
    margin-top: 4px;
}

/* highlight version */
.price-note.highlight {
    background: rgba(79, 124, 255, 0.08);
    padding: 10px;
    border-radius: 10px;
}

/* title */

.ai-head-box h2 {
    font-size: 40px;
    margin-bottom: 18px;
    font-weight: 600;
}

/* divider */

.ai-divider {
    height: 2px;
    width: 120px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #1e40af, #000, transparent);
}

#modules {
    position: relative;
    overflow: hidden;
}

/* paragraph */

.ai-head-box p {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

/* highlighted keywords */

.ai-highlight {
    color: #2d427e;
    font-weight: 600;

    text-shadow: 0 0 8px rgba(101, 216, 255, 0.25);
}

.ai-node {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;

    background: #65d8ff;

    box-shadow:
        0 0 8px #65d8ff,
        0 0 18px rgba(101, 216, 255, 0.6);

    animation: nodePulse 2.2s infinite;
}

.node-1 {
    top: 30px;
    right: 30px;
}
.node-2 {
    bottom: 30px;
    left: 30px;
}
.node-3 {
    top: 50%;
    right: -10px;
}

@keyframes nodePulse {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.4);
        opacity: 1;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.6;
    }
}

.ai-corner {
    position: absolute;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(45, 66, 126, 0.4);
}

.corner-tl {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.corner-tr {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.corner-bl {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.corner-br {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

.ai-head-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;

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

    transform: skewX(-20deg);
    animation: glassMove 7s infinite;
}

@keyframes glassMove {
    0% {
        left: -40%;
    }
    100% {
        left: 120%;
    }
}

/* reveal */

.float-reveal.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.industry:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 184, 77, 0.24);
    box-shadow: 0 0 30px rgba(255, 184, 77, 0.08);
}

.industry .emoji {
    font-size: 26px;
    margin-bottom: 12px;
}

.industry h4 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.industry p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.cta {
    padding-bottom: 100px;
    /* background: radial-gradient(
      circle at 20% 10%,
      rgba(101, 216, 255, 0.8),
      transparent 24%
    ),
    radial-gradient(circle at 80% 70%, rgba(255, 122, 0, 0.2), transparent 24%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.9)
    ); */
}

.cta-box {
    padding: 100px 80px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);

    box-shadow: var(--shadow);
    text-align: center;
}

.cta-box a {
    margin: 0 10px;
}

.cta-box h2 {
    margin: 0 0 12px;
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.cta-box p {
    margin: 0 auto 30px auto;
    color: var(--muted);
    line-height: 1.8;
    max-width: 700px;
}

footer {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
    font-size: 14px;
    background: #000;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

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

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: 2s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.fade-in:nth-child(1) {
    transition-delay: 0.1s;
}
.fade-in:nth-child(2) {
    transition-delay: 0.2s;
}
.fade-in:nth-child(3) {
    transition-delay: 0.3s;
}
/* optional delay helpers */

.delay-1 {
    transition-delay: 0.2s;
}
.delay-2 {
    transition-delay: 0.4s;
}
.delay-3 {
    transition-delay: 0.6s;
}
.delay-4 {
    transition-delay: 0.8s;
}

.ai-grid-4 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.ai-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.ai-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
}

.ai-card:hover {
    border-color: #7aa2ff;
    box-shadow: 0 0 40px rgba(122, 162, 255, 0.2);
    transform: translateY(-6px);
}

/* =========================
SECTION LAYOUT
========================= */

#why-7pixel-products .showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

#why-7pixel-products .showcase-card {
    border: 1px solid var(--card-border);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.7),
        rgba(255, 255, 255, 0.6)
    );
    backdrop-filter: blur(18px);
    border-radius: 26px;
    box-shadow: var(--shadow);
    border-radius: 20px;
    padding: 32px;
}

#why-7pixel-products h2 {
    margin: 5px 0 12px;
    font-size: clamp(1.9rem, 4vw, 3rem);
}

.system-note {
    font-size: 10pt;
    line-height: 1.4;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.ai-chart-bg {
    position: absolute;
    top: -25%;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.35;
    z-index: 0;
}

.ai-chart-bg svg {
    width: 100%;
    height: 100%;
}

.seg {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 8px rgba(101, 216, 255, 0.35));
}

.node {
    fill: #00aeef;
    stroke: white;
    stroke-width: 0.6;
    filter: drop-shadow(0 0 6px rgba(101, 216, 255, 0.8));
}

@keyframes flowLine {
    from {
        stroke-dashoffset: 0;
    }
    to {
        stroke-dashoffset: -12;
    }
}

/* =========================
AI DOWN ARROW CTA
========================= */

.ai-start-zone {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}

.ai-start-zone h3 {
    margin: 16px 0 10px;
    font-size: 22px;
    color: var(--primary);
}

.ai-start-zone p {
    line-height: 1.7;
    margin-bottom: 20px;
}

/* arrow container */

.ai-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

/* vertical glowing line */

.ai-arrow-line {
    width: 2px;
    height: 60px;

    background: linear-gradient(
        180deg,
        rgba(30, 41, 59, 0),
        /* transparent dark */ #2563eb,
        /* blue */ #2563eb /* strong blue */
    );

    border-radius: 10px;

    box-shadow:
        0 0 10px rgba(37, 99, 235, 0.6),
        0 0 25px rgba(37, 99, 235, 0.3);

    animation: aiArrowPulse 2s infinite;
}

/* arrow head */

.ai-arrow-head {
    width: 10px;
    height: 10px;
    border-right: 2px solid #2563eb; /* deep blue */
    border-bottom: 2px solid #2563eb;

    transform: rotate(45deg);
    margin-top: -6px;

    /* box-shadow:
    0 0 8px rgba(37, 99, 235, 0.8),
    0 0 16px rgba(37, 99, 235, 0.4); */
}

.ai-start-actions {
    text-align: center;
    margin-top: 30px;
}

.ai-start-actions .btn-primary {
    border-radius: 60px;
    font-size: 14pt;
    padding: 8px 30px;
    font-weight: 300;
    font-family: "Montserrat", sans-serif;
}

/* pulse animation */

@keyframes aiArrowPulse {
    0% {
        opacity: 0.4;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(6px);
    }

    100% {
        opacity: 0.4;
        transform: translateY(0);
    }
}

.px-usecases .section-head {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    line-height: 1.5;
}

.px-usecase-grid {
    display: block;
    width: 100%;
    gap: 24px;
    margin-top: 40px;
}

.px-usecase-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.7),
        rgba(255, 255, 255, 0.6)
    );
    backdrop-filter: blur(18px);
    border-radius: 26px;
    padding: 28px;
    transition: 0.3s;
    text-align: center;
}

.px-usecase-card:hover {
    transform: translateY(-6px);
    border-color: #65d8ff;
}

.usecase-icon {
    font-size: 26px;
    margin-bottom: 10px;
}

.px-usecase-card h4 {
    margin-bottom: 0px;
    font-size: 14pt;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 15px;
}

.px-usecase-card p {
    opacity: 0.8;
    line-height: 1.5;
    font-family: "Inter", sans-serif;
}

.industry-desc {
    font-size: 11pt;
}
p.industry-desc {
    margin-bottom: 10px;
}

.px-usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 20px;
}

.px-why-ai {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(90, 120, 255, 0.12),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 25%,
            rgba(0, 204, 255, 0.1),
            transparent 30%
        ),
        radial-gradient(
            circle at 50% 100%,
            rgba(126, 87, 255, 0.1),
            transparent 35%
        );
}

.px-why-ai::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(120, 140, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(120, 140, 255, 0.06) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0.35)
    );
    pointer-events: none;
}

.px-why-ai .container {
    position: relative;
    z-index: 2;
    width: min(1200px, 92%);
    margin: 0 auto;
}

.px-why-head {
    max-width: 820px;
    margin: 0 auto 48px;
}

.px-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #2d427e;
    background: rgba(79, 70, 229, 0.08);
    border: 1px solid rgba(79, 70, 229, 0.12);
    letter-spacing: 0.12em;
}

.px-why-head h2,
h2.px-title {
    margin: 0 0 16px;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.05;
    font-weight: 700;
    color: #000;
}

.px-why-head p {
    margin: 0 0 15px 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--muted);
    font-family: "Montserrat", sans-serif;
}

.px-sub {
    color: var(--muted);
    max-width: 700px;
    margin-bottom: 70px;
    line-height: 1.5;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
}

.px-why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.px-why-card {
    position: relative;
    padding: 28px 26px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.px-why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.28),
        rgba(56, 189, 248, 0.12),
        rgba(255, 255, 255, 0.2)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.px-why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.22);
    box-shadow:
        0 28px 65px rgba(79, 70, 229, 0.12),
        0 10px 30px rgba(15, 23, 42, 0.06);
}

.px-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #2d427e;
    background: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.16),
        rgba(56, 189, 248, 0.14)
    );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        0 12px 26px rgba(99, 102, 241, 0.12);
}

.px-why-card h3,
.metric h4,
.px-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.5;
    color: var(--primary);
    font-weight: 700;
    font-weight: 600;
    font-family: "Inter", sans-serif;
}
.px-why-card h4 {
    margin-bottom: 15px;
}
/* .px-card h3 { font-size:12pt; font-weight:700; font-family: 'Inter',sans-serif; margin-bottom:30px;} */

.metric h4 {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--primary);
    font-weight: 700;
    font-weight: 600;
    font-family: "Inter", sans-serif;
}

.px-why-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
}

.px-why-card p.industry-desc {
    font-weight: 500;
    font-size: 9pt;
    margin-top: -10px;
}
.px-list {
    margin-top: 20px;
}
.px-list li {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
}
.px-list li i {
    margin-right: 5px;
    color: rgb(5, 83, 14);
}

/* =========================
   AIRSHOP INTRO
========================= */
.airshop-intro {
    position: relative;
}

.airshop-intro-box {
    position: relative;
    padding: 42px;
    border-radius: 28px;
    overflow: hidden;
}

.airshop-intro-box::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -100px;
    width: 280px;
    height: 280px;
    background: radial-gradient(
        circle,
        rgba(79, 124, 255, 0.18),
        transparent 65%
    );
    pointer-events: none;
}

.airshop-intro-head {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.airshop-label {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #4f7cff;
    background: rgba(79, 124, 255, 0.08);
    border: 1px solid rgba(79, 124, 255, 0.12);
    margin-bottom: 14px;
}

.airshop-intro-head h2 {
    margin: 0 0 14px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    color: #111827;
}

.airshop-lead {
    margin: 0 auto;
    font-size: 18px;
    color: var(--primary, #4f7cff);
    font-weight: 500;
    text-align: center;
}

/* =========================
   GRID & CARD
========================= */
.airshop-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.airshop-top-grid > * {
    min-width: 0;
}

.airshop-card {
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.5);
}

.airshop-card h3 {
    margin-bottom: 20px;
    margin-top: 40px;
}
.airshop-card h4 {
    margin-bottom: 10px;
    font-size: 14pt;
    font-family: "Inter", sans-serif;
}

.airshop-card p {
    font-family: "Montserrat", sans-serif;
    margin-bottom: 20px;
}

/* =========================
   COMPARE
========================= */
.airshop-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0;
}

.compare-box {
    padding: 16px;
    border-radius: 14px;
    font-size: 13px;
}

.compare-box strong {
    display: block;
    margin-bottom: 8px;
    font-size: 14pt;
}

.compare-box.old {
    background: rgba(0, 0, 0, 0.03);
    color: #666;
}

.compare-box.new {
    background: rgba(79, 124, 255, 0.08);
    border: 1px solid rgba(79, 124, 255, 0.2);
    color: #111;
}

.compare-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compare-box li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 10pt;
    margin-bottom: 8px;
    line-height: 1.5;
}

.compare-box li i {
    margin-top: 2px;
    font-size: 14px;
}

.compare-box.old li i {
    color: #9ca3af;
}

.compare-box.new li i {
    color: #4f7cff;
}

/* =========================
   TABS
========================= */
.flow-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
}

.tab {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.05);
    cursor: pointer;
    font-size: 12px;
}

.tab.active {
    background: rgba(79, 124, 255, 0.15);
    color: #4f7cff;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeUp 0.3s ease;
}

/* =========================
   POS & FLOW
========================= */
.pos-item,
.flow-row {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.85);
    margin-bottom: 6px;
    font-family: "Montserrat", sans-serif;
    font-size: 10pt;
}

.pos-total {
    text-align: right;
    margin-top: 8px;
    font-weight: 600;
}

/* =========================
   FLOW VISUAL
========================= */
.airshop-flow-clean {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.flow-item {
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    text-align: center;
    min-width: 110px;
}

.flow-item.highlight,
.flow-item.active {
    background: rgba(79, 124, 255, 0.15);
    border: 1px solid rgba(79, 124, 255, 0.2);
}

.flow-dot {
    width: 6px;
    height: 6px;
    background: #4f7cff;
    border-radius: 50%;
    animation: flowMove 1.5s infinite;
}

@keyframes flowMove {
    0% {
        opacity: 0.3;
        transform: translateX(-2px);
    }
    50% {
        opacity: 1;
        transform: translateX(2px);
    }
    100% {
        opacity: 0.3;
        transform: translateX(-2px);
    }
}

/* =========================
   POINTS
========================= */
.airshop-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.airshop-point {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    font-size: 14px;
    color: #374151;
}

.airshop-point i {
    color: #4f7cff;
}

.airshop-points.center {
    justify-content: center;
    flex-wrap: wrap;
    display: flex;
    gap: 10px;
}

/* =========================
   BADGES
========================= */
.badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
}

.badge.primary {
    background: rgba(79, 124, 255, 0.15);
    color: #4f7cff;
}

.badge.success {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.badge.warning {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.badge.danger {
    background-color: #ffe5e7;
    color: #d90429;
}

/* =========================
   BOTTOM
========================= */
.airshop-bottom {
    margin-top: 30px;
    padding: 28px;
    text-align: center;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
}

.airshop-bottom p {
    max-width: 700px;
    margin: 10px auto 20px;
    color: #555;
}

.airshop-ai-note {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(79, 124, 255, 0.08);
    border: 1px solid rgba(79, 124, 255, 0.12);
    font-size: 13px;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4f7cff;
    box-shadow: 0 0 12px rgba(79, 124, 255, 0.45);
}

/* =========================
SECTION
========================= */
.nx-journey {
    position: relative;
    padding: 120px 0;
    color: #333;
    overflow: hidden;
}

/* =========================
STEPS WRAP
========================= */
.nx-journey-steps-wrap {
    position: relative;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.nx-progress {
    position: absolute;
    top: 4px;
    left: 4px;
    bottom: 4px;
    right: 4px;
    width: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.05),
        rgba(0, 0, 0, 0.08)
    );
    z-index: 0;
    border-radius: 16px;
}

.nx-journey-steps {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.nx-step {
    text-align: center;
    padding: 20px 12px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.25s ease;
    color: #333;
    font-family: "Montserrat", sans-serif;
    border: 1px solid transparent;
}

.nx-step.active {
    color: #000;
    font-weight: 600;
}

/* =========================
PANEL (GLASS)
========================= */
.nx-journey-panel {
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 40px;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow:
        0 10px 28px rgba(59, 130, 246, 0.28),
        0 0 40px rgba(101, 216, 255, 0.18);
}

/* PANELS */
.nx-panel {
    display: none;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-weight: 10pt;
    line-height: 1.5;
    padding: 30px;
}

.nx-panel h3 {
    margin-bottom: 10px;
}

.nx-panel.active {
    display: flex;
}

/* LAYOUT */
.nx-left {
    flex: 1;
}
.nx-right {
    flex: 1;
}

/* =========================
FAKE UI (PHOTO-LIKE)
========================= */
.nx-ui-mock {
    height: 260px;
    border-radius: 18px;
    background: linear-gradient(135deg, #eef4ff, #ffffff);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    transition: transform 0.1s ease;
    margin-left: 20px;
}

/* UI ELEMENTS */
.nx-ui-mock::before {
    content: "";
    position: absolute;
    width: 60%;
    height: 40%;
    background: #fff;
    top: 20px;
    left: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.nx-ui-mock::after {
    content: "";
    position: absolute;
    width: 30%;
    height: 60%;
    background: #fff;
    right: 20px;
    bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.ai-dash-wrap {
    padding: 40px;
    border: 1px solid var(--card-border);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.2)
    );
    backdrop-filter: blur(18px);
    border-radius: 26px;
    box-shadow: var(--shadow);
    font-family: "Montserrat", sans-serif;
}

.ai-dash-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ai-dash-stat {
    background: linear-gradient(
        180deg,
        rgba(238, 242, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.92) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

    color: #000;
    padding: 25px;
    border-radius: 23px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Montserrat", sans-serif;
}

.ai-dash-stat h2 {
    font-size: 38px;
    margin: 0;
    font-weight: 400;
}

.ai-dash-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #2d427e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.ai-dash-panel {
    margin-top: 25px;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ai-dash-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ai-dash-row h3 {
    font-weight: 600;
}
.ai-dash-tabs span {
    margin-left: 20px;
    color: #888;
    cursor: pointer;
}

.ai-dash-tabs .active {
    color: #2d427e;
    border-bottom: 2px solid #2d427e;
    font-size: 10pt;
    padding-bottom: 5px;
}

.ai-dash-sub {
    color: #888;
}

.ai-dash-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.ai-dash-gauge {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: conic-gradient(#2d427e 85%, #eee 0%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ai-dash-gauge-inner {
    width: 130px;
    height: 130px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.ai-dash-gauge::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(45, 65, 126, 0.2),
        transparent 70%
    );
    opacity: 0;
    transition: 0.4s;
}

.ai-dash-gauge:hover::after {
    opacity: 1;
}

.ai-badge {
    display: inline-block;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    background: linear-gradient(135deg, #6a8cff, #9a6bff);
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.ai-dash-summary {
    max-width: 400px;
}
.ai-dash-summary h2 {
    font-size: 24pt;
    font-weight: 500;
}

.ai-dash-muted {
    color: #888;
}

.ai-dash-desc {
    position: relative;
    padding-left: 28px;
    font-size: 11pt;
}

.ai-sup {
    position: absolute;
    top: -5px;
    left: 0;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #6a8cff, #9a6bff);
    padding: 5px 5px;
    border-radius: 5px;
    opacity: 0.8;
    letter-spacing: 1px;
}

.ai-dash-btn {
    margin-top: 15px;
    background: #ffd5df;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    color: #2d427e;
    cursor: pointer;
}

.ai-dash-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.ai-dash-mini {
    background: #fafafa;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.ai-dash-mini h3 {
    font-size: 24px;
}

.ai-dash-mini p {
    color: #2d427e;
}

.ai-pain-section {
    padding: 80px 40px;
    background: radial-gradient(circle at top, #0c0f1a, #05070d);
    color: #fff;
}

.ai-pain-wrap {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.ai-pain-title {
    font-size: 36px;
    margin-bottom: 16px;
}

.ai-pain-sub {
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
}

.ai-pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.ai-pain-card {
    position: relative; /* IMPORTANT */
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 20px 20px; /* extra top space */
    text-align: left;
    transition: 0.3s;
    margin-bottom: 30px;
}

.ai-pain-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(255, 80, 80, 0.2);
}

/* FLOATING ICON */
.ai-pain-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%); /* center + lift up */

    width: 60px;
    height: 60px;
    border-radius: 50%;

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

    background: linear-gradient(135deg, #ff5c5c, #ff8a5c);
    color: #fff;
    font-size: 26px;

    box-shadow: 0 0 20px rgba(255, 80, 80, 0.4);
}

.ai-pain-card h3 {
    margin-top: 10px;
    margin-bottom: 8px;
    color: var(--primary);
}

.ai-pain-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.ai-pain-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 rgba(255, 80, 80, 0.6);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 80, 80, 0.8);
    }
    100% {
        box-shadow: 0 0 0 rgba(255, 80, 80, 0.6);
    }
}

/* MOBILE */
@media (max-width: 900px) {
    .ai-pain-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .ai-pain-grid {
        grid-template-columns: 1fr;
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .nx-journey-panel {
        flex-direction: column;
    }

    .nx-box {
        display: none;
    }
}

/* =========================
   ANIMATION
========================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .airshop-intro {
        padding: 72px 0;
    }

    .airshop-intro-box {
        padding: 28px 22px;
    }

    .airshop-top-grid,
    .airshop-compare,
    .airshop-intro-grid {
        grid-template-columns: 1fr;
    }

    .airshop-card {
        width: 100%;
    }

    .airshop-points {
        flex-direction: column;
    }
}

/* =========================
MOBILE NAV
========================= */
@media (max-width: 900px) {
    .nx-step span {
        display: block;
        font-size: 18pt;
    }

    .ai-grid-4 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* open accordion */
    .has-mega.open .mega-menu {
        display: block;
    }

    .mega-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nav-actions {
        display: none;
    }

    .nav-menu {
        position: fixed;

        top: -80px;
        left: 0;
        width: 100%;

        background: #0c1118;

        flex-direction: column;
        align-items: flex-start;

        padding: 24px;

        gap: 14px;

        transform: translateY(-120%);
        transition: 0.35s;

        border-top: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 999;
    }

    .nav-menu.open {
        transform: translateY(150px);
    }

    .nav-menu li {
        width: 100%;
    }

    /* mega menu becomes dropdown */

    .mega-menu {
        position: static;
        width: 100%;

        opacity: 1;
        pointer-events: auto;

        transform: none;

        display: none;
        padding: 10px 0;

        border: none;
        box-shadow: none;
    }

    .has-mega.open .mega-menu {
        display: block;
    }

    /* hide desktop buttons */

    .nav-actions {
        display: none !important;
    }

    /* show mobile controls */

    .mobile-actions {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/* =========================
PRODUCT SELECTOR
========================= */

#why-7pixel-products .product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 16px 18px;
    margin-bottom: 16px;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);

    cursor: pointer;
    transition: 0.25s;
}

#why-7pixel-products .product-item:hover {
    border-color: #65d8ff;
    transform: translateX(4px);
}

#why-7pixel-products .product-item.active {
    border-color: #65d8ff;
    background: rgba(101, 216, 255, 0.08);
}

#why-7pixel-products .arrow {
    width: 28px;
    height: 28px;

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

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

    color: #65d8ff;
    font-size: 18px;
}

/* =========================
MODULE PANEL
========================= */

#why-7pixel-products .module-panel {
    opacity: 1;
    transform: translateX(0);
    transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

#why-7pixel-products .module-panel.slide-out {
    opacity: 0;
    transform: translateX(-20px);
}

#why-7pixel-products .module-panel.slide-in {
    opacity: 0;
    transform: translateX(20px);
}

#why-7pixel-products .module-panel.slide-in.show {
    opacity: 1;
    transform: translateX(0);
}

#why-7pixel-products .module-list {
    margin: 14px 0;
    padding: 0;
    list-style: none;
}

#why-7pixel-products .module-list li {
    color: #aebbd1;
    margin-bottom: 6px;
}

.module-btn {
    display: inline-block;
    margin-top: 10px;

    padding: 8px 16px;

    border-radius: 999px;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
}

.module-btn:hover {
    border: 1px solid var(--primary);
    background: var(--primary);
    color: #fff;
}

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

#px-product-drawer {
    position: fixed;
    top: 5%;
    right: 5%;
    left: 5%;
    bottom: 5%;
    width: 90%;

    background: rgba(15, 20, 30, 0.7);
    backdrop-filter: blur(20px);

    border-radius: 20px;
    border: 1px solid rgba(101, 216, 255, 0.3);

    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);

    z-index: 9999;

    transform: translateX(-120%);
    transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);

    overflow-y: auto;
    padding: 30px;
}

#px-product-drawer .module-panel {
    overflow-y: auto;
    max-height: 50px;
}
#px-product-drawer.open {
    transform: translateX(0);
}

.px-drawer-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.px-close {
    background: none;
    border: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
}

/* CARD */

.px-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.7),
        rgba(255, 255, 255, 0.6)
    );
    backdrop-filter: blur(18px);
    border-radius: 26px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: 0.35s;
    max-height: 450px;
}

.px-card p {
    color: var(--muted);
    line-height: 1.5;
    font-size: 12pt;
}
.px-card sup {
    font-size: 5pt;
    margin-top: -10px;
    margin-left: 0px;
    font-weight: 400;
}
.px-text-small {
    font-size: 10pt;
}
.px-crm-title {
    font-size: 10pt;
    font-weight: 800;
}
.px-crm-amount,
.px-crm-new {
    font-size: 46pt;
    text-align: right;
}
.badge {
    padding: 5px 10px;
    font-size: 8pt;
    text-transform: uppercase;
    border-radius: 5px;
}
.badge-warning {
    background: orange;
    color: #fff;
}
.badge-danger {
    background-color: red;
    color: #fff;
}

.badge-primary {
    background: gray;
    color: #fff;
}
.badge-success {
    background: green;
    color: #fff;
}
.px-card:hover {
    transform: translateY(-6px);
    border-color: #65d8ff;
}
.text-xs {
    font-size: 0.5em;
    padding: 2px 10px !important;
}
.text-dark {
    color: #000;
}
.text-danger {
    color: #ff0000;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-normal {
    font-style: normal;
}
.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}
.tp-card-main-img {
    max-width: 800px;
    margin: 20px auto;
}
.tp-card-main-img img {
    width: 100%;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.pb-0 {
    padding-bottom: 0 !important;
}
.mb-2 {
    margin-bottom: 20px;
}
.px-desc {
    color: #aebbd1;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* PHONE */

.px-phone-wrap {
    height: 150px;
    position: relative;
}

.px-phone {
    position: absolute;
    bottom: -120px;
    left: 50%;

    width: 200px;
    height: 250px;

    background: linear-gradient(45deg, #000, #333);
    border-radius: 34px;
    padding: 8px;
    box-shadow:
        0 0 40px rgba(101, 216, 255, 0.15),
        0 0 100px rgba(101, 216, 255, 0.1);
    transform: translateX(-50%) rotate(10deg);
    transition: 0.45s;
}
.px-phone .px-icon {
    background: #efefef;
    border-radius: 5px;
    border: 1px solid #999;
    margin-bottom: 5px;
}

/* hover straighten */

.px-webshop:hover .px-phone {
    transform: translateX(-50%) rotate(0deg) translateY(-20px);
}

.px-phone-screen {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* SHOP UI */

.px-shop-ui {
    padding: 10px 10px;
    gap: 5px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.px-phone-island {
    display: block;
    margin: 0 auto 5px auto;
    border-radius: 60px;
    height: 20px !important;
    width: 60px;
    background: #000;
    color: #000;
    font-size: 9pt;
    position: relative;
}
.px-phone-cam {
    position: absolute;
    top: 2px;
    right: 5px;
    width: 10px;
    height: 10px;
    border: 2px solid #222;
    background: #111;
    border-radius: 10px;
}
.px-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.px-item {
    background: rgba(255, 255, 255, 1);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 22px;
}

.px-price {
    font-size: 12px;
    color: #333;
}

.px-btn {
    margin-top: auto;
    background: #65d8ff;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

/* GRAPH */

.px-graph-wrap {
    height: 160px;
    position: relative;
}

.px-insights {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(120, 180, 255, 0.2);

    box-shadow:
        0 0 40px rgba(101, 216, 255, 0.15),
        0 0 100px rgba(101, 216, 255, 0.1);

    animation: pxGlow 4s ease-in-out infinite alternate;
    width: 70%;
    font-size: 8pt;
    position: absolute;
    z-index: 8;
    left: 50px;
    bottom: 80px !important;
}

.px-graph {
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;

    display: flex;
    gap: 8px;

    height: 140px;

    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 16px;

    backdrop-filter: blur(10px);

    align-items: flex-end;
}

/* BAR */

.px-bar {
    flex: 1;
    background: #65d8ff;
    border-radius: 4px 4px 0 0;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;

    transform-origin: bottom;
}

/* HOVER EFFECT */

.px-bar:hover {
    background: #9be9ff;

    transform: scaleY(1.25);

    box-shadow:
        0 0 12px rgba(101, 216, 255, 0.8),
        0 0 30px rgba(101, 216, 255, 0.4);
}

/* CRM */

.px-crm-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.px-copy-btn {
    background: #222;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
}

/* TABLE */

.px-table-wrap {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 18px;
    margin-top: 20px;
    backdrop-filter: blur(10px);
    overflow-y: auto;
    max-height: 280px; /* or any height inside card */
}

.px-crm {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(120, 180, 255, 0.2);

    box-shadow:
        0 0 40px rgba(101, 216, 255, 0.15),
        0 0 100px rgba(101, 216, 255, 0.1);

    animation: pxGlow 4s ease-in-out infinite alternate;
}

@keyframes pxGlow {
    0% {
        box-shadow:
            0 0 30px rgba(101, 216, 255, 0.08),
            0 0 60px rgba(101, 216, 255, 0.05);
    }

    100% {
        box-shadow:
            0 0 60px rgba(101, 216, 255, 0.18),
            0 0 120px rgba(101, 216, 255, 0.12);
    }
}
.px-table {
    width: 100%;
    border-collapse: collapse;
}

.px-table th {
    font-size: 12px;
    text-align: left;
    color: #000;
}
.px-header {
    background: #efefef;
    padding: 10px 10px;
    border-radius: 15px 15px 0 0;
    border-bottom: 1px solid #333;
    font-weight: 600;
}
.px-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.px-table thead tr th {
    background: #efefef;
    padding: 10px 10px;
}

.px-table td {
    padding: 10px 10px;
    border-bottom: 1px dashed #666;
}

.px-table tr:last-child td {
    border-bottom: 0;
}

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

.px-showcase {
    padding: 50px 0 100px 0;
}

.px-title {
    margin-bottom: 10px;
    max-width: 700px;
}

.module-cta {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 10pt;
}

.module-cta .price strong {
    font-size: 14pt;
    color: #000;
}

.ai-hr {
    border: none;
    height: 1px;

    background: linear-gradient(
        to right,
        transparent,
        30%,
        #2563eb 50%,
        transparent 100%
    );

    margin: 20px 0;
}

.px-pricing-card {
    position: relative;
    padding: 48px 40px;
    border-radius: 28px;

    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

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

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

    transition: all 0.35s ease;
}

.px-pricing-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 30px 80px rgba(79, 124, 255, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.05);
}

.px-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin-top: 30px;
}

/* Each block */
.px-pricing-grid > div {
    padding: 18px 20px;
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.5);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 10px 30px rgba(0, 0, 0, 0.04);

    transition: all 0.3s ease;
}

/* hover effect */
.px-pricing-grid > div:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(79, 124, 255, 0.08);
}

/* titles */
.px-pricing-grid h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

/* list */
.px-pricing-grid ul {
    padding-left: 18px;
}

.px-pricing-grid li {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}
.px-pricing-grid > div:not(:last-child) {
    position: relative;
}

/* SECTION */
.px-hardware-ai {
    padding: 100px 0;
    margin-top: 60px;
}

/* GRID */
.px-hardware-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 50px;
}

/* CARD BASE */
.hw-card {
    position: relative;
    padding: 40px;
    border-radius: 24px;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.hw-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* MAIN CARD */
.hw-main {
    grid-column: span 2;
    min-height: 380px;

    background: linear-gradient(135deg, #eef2ff, #f8fafc);
}

.hw-main h3 {
    font-size: 28px;
    font-weight: 600;
}

.hw-main p {
    font-size: 15px;
    opacity: 0.85;
}

/* WIDE CARD */
.hw-wide {
    grid-column: span 2;
    min-height: 300px;
}

/* CONTENT */
.hw-content {
    max-width: 55%;
    position: relative;
    z-index: 2;
}

.hw-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.hw-content p {
    font-size: 14px;
    opacity: 0.8;
}

/* IMAGE */
.hw-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 100%;

    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;

    pointer-events: none;
}

/* AI GLOW */
.hw-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 80% 20%,
        rgba(99, 102, 241, 0.15),
        transparent
    );
    z-index: 0;
}

/* SPECIFIC IMAGES */
.hw-img.pos {
    background-image: url("/assets/img/pos/px7-prototype.webp");
}

.hw-img.printer {
    background-image: url("/assets/img/pos/x.webp");
}

.hw-img.scanner {
    background-image: url("/assets/img/pos/scanner.webp");
}

.hw-img.display {
    background-image: url("/assets/img/pos/lcd.webp");
}

.hw-img.kiosk {
    background-image: url("/assets/img/pos/kiosk.webp");
}

.px-hardware-cta {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hw-actions {
    margin-top: 20px;
}

.airsuite-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.flow-box {
    padding: 20px 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    text-align: center;
}

.flow-box.highlight {
    background: linear-gradient(135deg, #eef2ff, #f8fafc);
}

.flow-arrow {
    font-size: 24px;
    opacity: 0.5;
}

/* DROPDOWN MENU */
.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;

    min-width: 220px;
    padding: 10px 0;

    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.6);

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

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: all 0.25s ease;
    z-index: 999;
}

/* SHOW ON HOVER */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ITEM STYLE */
.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;
    font-size: 14px;
    color: #333;

    text-decoration: none;
    transition: all 0.2s ease;
}

/* HOVER EFFECT */
.dropdown-menu li a:hover {
    background: rgba(79, 124, 255, 0.08);
    color: #4f7cff;
}

/* ICON */
.dropdown-menu i {
    width: 16px;
    text-align: center;
    color: #888;
}

.solution-ecosystem {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.eco-card {
    padding: 20px 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

    text-align: center;
    max-width: 30%;
    font-family: "Montserrat", sans-serif;
}
.eco-card h3 {
    margin-bottom: 10px;
}
.eco-card.highlight {
    border: 2px solid #6366f1;
    max-width: 40%;
}

.eco-card.highlight h3 {
    font-size: 24pt;
}

.eco-sep {
    font-size: 22px;
    opacity: 0.5;
}

/* 3 COLUMN */
.pricing-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* ADD-ON GRID */
.addon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.addon-card {
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 14px;
}

.addon-card span {
    display: block;
    margin-top: 6px;
    color: #6366f1;
    font-weight: 600;
}

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

/* =========================
   PRICING SECTION
========================= */
.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
}

/* CARD */
.pricing-card {
    position: relative;
    padding: 38px 34px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}

.pricing-card h3 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 12px;
    font-weight: 700;
}

.pricing-card h2 {
    font-size: 44px;
    line-height: 1;
    margin: 0 0 14px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.pricing-card h2 span {
    font-size: 15px;
    font-weight: 500;
    color: #667085;
    margin-left: 4px;
}

.plan-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #667085;
    min-height: 48px;
}

.pricing-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.pricing-card ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #1f2937;
}

.pricing-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    font-weight: 700;
    color: #4f46e5;
}

.pricing-card .small {
    margin-top: 18px;
    margin-bottom: 22px;
    font-size: 13px;
    line-height: 1.5;
}

.pricing-card .ai-btn,
.pricing-card .ai-btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: auto;
}

/* STANDARD */
.pricing-card:not(.highlight) {
    border: 1px solid rgba(99, 102, 241, 0.08);
}

/* PREMIUM */
.pricing-card.highlight {
    border: 2px solid rgba(99, 102, 241, 0.35);
    background: linear-gradient(
        180deg,
        rgba(238, 242, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.92) 100%
    );
    transform: scale(1.03);
    box-shadow: 0 24px 70px rgba(79, 70, 229, 0.14);
}

.pricing-card.highlight:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 34px 85px rgba(79, 70, 229, 0.18);
}

.pricing-card.highlight::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top right,
        rgba(99, 102, 241, 0.12),
        transparent 40%
    );
    pointer-events: none;
}

/* BADGE */
/* .badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: #4f46e5;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(79, 70, 229, 0.25);
} */

/* OPTIONAL helper if you use muted text */
.text-muted {
    color: #98a2b3;
}

/* =========================
   BUNDLE PRICING (AIROFFICE)
========================= */

.highlight-bundle {
    border: 2px solid #0aa;
    position: relative;
    background: linear-gradient(180deg, #ffffff, #f8ffff);
}

.bundle-badge {
    background: linear-gradient(45deg, #ff7a18, #ffb347);
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    margin-left: 8px;
    font-weight: 600;
}

.price-main {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 5px;
}

.bundle-tag {
    font-size: 13px;
    color: #0aa;
    font-weight: 600;
    margin-bottom: 4px;
}

.standalone-price {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

/* =========================
   CONTACT STYLE (AIRCOUNT)
========================= */

.price-contact {
    font-size: 28px;
    font-weight: 600;
    color: #222;
}

/* ===== Bundle Highlight ===== */
.bundle-focus {
    position: relative;
    border: 1px solid rgba(0, 170, 170, 0.25);
    background: linear-gradient(180deg, #ffffff, #f6ffff);
    box-shadow: 0 10px 30px rgba(0, 170, 170, 0.08);
}

.bundle-focus:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 170, 170, 0.15);
}

.bundle-top {
    position: absolute;
    top: -10px;
    left: 20px;
}

.bundle-label {
    background: #0aa;
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
}

/* ===== Pricing ===== */
.price-main {
    font-size: 34px;
    font-weight: 700;
}

.price-main .from {
    font-size: 14px;
    color: #888;
}

.price-note {
    font-size: 13px;
    color: #0aa;
}

.price-alt {
    font-size: 15pt;
    color: #333;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 20px;
}

/* ===== AirCount ===== */
.price-contact {
    font-size: 30px;
    font-weight: 600;
}

/* =========================
   OPTIONAL: subtle hover
========================= */

.highlight-bundle:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 170, 170, 0.15);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.skills-grid-pro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

/* card */
.skill-box {
    padding: 22px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.25s ease;
}

.skill-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.skill-box h4 {
    margin-bottom: 14px;
    font-size: 16px;
}

/* rows */
.skill-row {
    margin-bottom: 14px;
}

.skill-row span {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    color: #333;
}

/* bar */
.bar {
    height: 5px;
    background: #eee;
    border-radius: 999px;
    overflow: hidden;
}

.bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #0aa, #6ff);
    border-radius: 999px;
    transition: width 1.2s ease;
}

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

.ai-about-wrap {
    font-family: "Montserrat", sans-serif;
}

.ai-hero {
    padding: 120px 20px;
    text-align: center;
    background: radial-gradient(
        circle at top,
        rgba(255, 0, 120, 0.1),
        transparent
    );
}

.ai-section {
    padding: 80px 20px;
}

.ai-dark {
    background: #0a0a0f;
    color: #fff;
}

.ai-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.ai-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.ai-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
}

.ai-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.ai-step {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
}

.ai-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.ai-timeline span {
    padding: 10px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
}
.px-what-cta {
    margin-top: 50px;
    text-align: center;
}

.ai-about {
    position: relative;
    padding: 100px 0;
    font-family: "Montserrat", sans-serif;
}

.ai-about::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    z-index: 0;
}

.ai-about-head h2 {
    font-size: 36px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}

.ai-about-head p {
    color: #777;
    margin-top: 10px;
}

/* GRID */
.ai-about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

/* LEFT */
.ai-about-left h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-family: "Inter", sans-serif;
}

.ai-about-left p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
    font-family: "Montserrat", sans-serif;
}

.ai-about-highlight {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ai-about-highlight span {
    background: rgba(0, 0, 0, 0.05);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
}

/* RIGHT */
.ai-about-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* CARD */
.ai-card {
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.ai-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ai-card h4 {
    margin-bottom: 10px;
}

.ai-card p {
    color: #555;
    font-size: 14px;
}

/* INITIAL STATE */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* ACTIVE */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* DELAYS */
.delay-1 {
    transition-delay: 0.1s;
}
.delay-2 {
    transition-delay: 0.2s;
}
.delay-3 {
    transition-delay: 0.3s;
}
.delay-4 {
    transition-delay: 0.4s;
}

.flow-desc h4 {
    font-size: 12pt;
    color: #333;
    margin-bottom: 2px;
    padding-bottom: 0;
}
.flow-desc p {
    font-size: 10pt;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0;
}

.timeline-center {
    position: relative;
    margin-top: 60px;
}

/* center line */
.timeline-center::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: #e5e7eb;
    transform: translateX(-50%);
}

/* rows */
.timeline-row {
    width: 100%;
    display: flex;
    position: relative;
    margin-bottom: 60px;
}

/* left side */
.timeline-row.left {
    justify-content: flex-start;
}

.timeline-row.left .content {
    width: 45%;
    text-align: right;
}

/* right side */
.timeline-row.right {
    justify-content: flex-end;
}

.timeline-row.right .content {
    width: 45%;
    text-align: left;
}

/* dot */
.timeline-row::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 10px;
    width: 14px;
    height: 14px;
    background: #2563eb;
    border-radius: 50%;
    transform: translateX(-50%);
}

/* content box */
.timeline-row .content {
    background: #fff;
    padding: 20px 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.timeline-row .content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.28),
        rgba(56, 189, 248, 0.12),
        rgba(255, 255, 255, 0.2)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.timeline-row h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.timeline-row p {
    color: #666;
    line-height: 1.6;
}

/* main dot */
.timeline-row::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 10px;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
/* ripple effect */
.timeline-row::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 10px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.5);
    transform: translateX(-50%);
    z-index: 1;

    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 0.6;
    }
    70% {
        transform: translateX(-50%) scale(2.5);
        opacity: 0;
    }
    100% {
        transform: translateX(-50%) scale(2.5);
        opacity: 0;
    }
}
.timeline-row:hover .content {
    transform: translateY(-4px);
    transition: 0.3s ease;
}

.px-tech-split {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* AI glow */
.px-tech-split::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(255, 80, 120, 0.15),
        transparent 70%
    );
    top: -150px;
    left: -150px;
    filter: blur(120px);
}

/* ROW */
.px-tech-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: center;
}

/* LOGO GRID */
.px-logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    text-align: center;
}

/* LOGO ITEM */
.logo-item {
    text-align: center;
    transition: 0.3s;
}

.logo-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 8px;
    display: block;
    margin: 0 auto 8px auto;
}

.logo-item span {
    font-size: 13px;
    color: #333;
    display: block;
}

.logo-item:hover {
    transform: translateY(-6px);
}

.px-trustflow {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* wrapper */
.px-brandloop {
    overflow: hidden;
    margin-top: 0px;
}

/* track */
.px-brand-track {
    display: flex;
    width: max-content;
    animation: px-scrollflow 28s linear infinite;
}

/* item */
.px-brand-item {
    flex: 0 0 auto;
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 25px;
    opacity: 1;
    transition: all 0.3s ease;
}

/* logo */
.px-brand-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* hover */
.px-brand-item:hover {
    opacity: 1;
}

.px-brand-item:hover img {
    transform: scale(1.08);
}

.px-brandloop:hover .px-brand-track {
    animation-play-state: paused;
}

.px-brandloop::before,
.px-brandloop::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
}

/* animation */
@keyframes px-scrollflow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* GLASS PANEL */
.px-tech-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 18px;
    backdrop-filter: blur(20px);
}

/* TITLE */
.px-tech-glass h3 {
    margin-bottom: 12px;
    color: var(--primary);
}

/* DESC */
.px-tech-glass p {
    font-size: 14px;
}

/* LIST */
.px-tech-list {
    margin-top: 20px;
}

.px-tech-list .item {
    background: linear-gradient(90deg, #2fbf9f, var(--primary));
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.px-tech-list i {
    margin-right: 8px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .px-tech-row {
        grid-template-columns: 1fr;
    }

    .px-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* RESPONSIVE */
@media (max-width: 900px) {
    .ai-about-grid {
        grid-template-columns: 1fr;
    }
}

/* tablet */
@media (max-width: 1024px) {
    .skills-grid-pro {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* mobile */
@media (max-width: 640px) {
    .skills-grid-pro {
        grid-template-columns: 1fr;
    }

    .skill-box {
        padding: 18px;
    }
}

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

    .hero-visual {
        min-height: 520px;
    }

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

    .industries {
        grid-template-columns: repeat(3, 1fr);
    }

    .logo-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .px-showcase .px-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .px-showcase .px-wide {
        grid-column: span 2;
    }
}

@media (max-width: 1024px) {
    .px-usecase-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-top: 20px;
    }

    .eco-card {
        max-width: 29%;
    }

    .px-usecases .section-head {
        width: 80%;
    }

    .ai-head-box {
        max-width: 1024px;
    }

    .hero-grid h1 {
        margin: 18px 16px;
        font-size: clamp(2.6rem, 6vw, 5rem);
        line-height: 1.02;
        max-width: 90%;
    }

    .hero p {
        margin: 0;
        font-size: 18px;
        line-height: 1.75;
        color: #5b6475;
        max-width: 90%;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
        margin-top: 34px;
        max-width: 100%;
    }

    .ai-dash-content {
        gap: 24px;
    }

    .ai-dash-gauge {
        width: 170px;
        height: 170px;
    }

    .ai-dash-gauge-inner {
        width: 120px;
        height: 120px;
        font-size: 22px;
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .pricing-grid {
        gap: 24px;
    }

    .pricing-card {
        padding: 32px 26px;
    }

    .pricing-card h2 {
        font-size: 38px;
    }

    .pricing-card.highlight {
        transform: none;
    }

    .pricing-card.highlight:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 900px) {
    .pricing-grid-3 {
        grid-template-columns: 1fr;
    }
    .addon-grid {
        grid-template-columns: 1fr 1fr;
    }

    .eco-card {
        max-width: 28%;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 80px 0;
    }

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

    .plan-desc {
        min-height: auto;
    }

    .badge {
        top: 16px;
        right: 16px;
    }

    .ai-dash-wrap {
        padding: 15px;
    }
    .ai-dash-panel {
        margin-top: 0;
    }
    .ai-dash-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ai-dash-summary {
        max-width: 100%;
    }

    .ai-dash-gauge {
        width: 150px;
        height: 150px;
    }

    .ai-dash-gauge-inner {
        width: 110px;
        height: 110px;
        font-size: 20px;
    }

    .ai-dash-desc {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .pricing-card {
        padding: 26px 20px;
        border-radius: 20px;
    }

    .pricing-card h3 {
        font-size: 22px;
    }

    .pricing-card h2 {
        font-size: 34px;
    }

    .pricing-card ul li {
        font-size: 14px;
    }

    .plan-desc {
        font-size: 14px;
    }

    .eco-card {
        max-width: 100%;
    }
    .eco-card.highlight {
        max-width: 100%;
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
    .ai-dash-gauge {
        width: 130px;
        height: 130px;
    }

    .ai-dash-gauge-inner {
        width: 95px;
        height: 95px;
        font-size: 18px;
    }

    .ai-dash-summary h2 {
        font-size: 24px;
    }
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-family: inherit;
}

.form-group select {
    padding-right: 42px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
}

.btn-block {
    width: 100%;
}

.contact-list {
    margin-top: 10px;
    padding-left: 18px;
}

/* =========================
PX SHOWCASE RESPONSIVE FIX
PUT THIS AT THE VERY BOTTOM
========================= */

.px-showcase,
.px-showcase * {
    box-sizing: border-box;
}

.px-showcase {
    overflow-x: hidden;
}

.px-showcase .container {
    max-width: 100%;
    overflow-x: hidden;
}

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

.px-showcase .px-card {
    min-width: 0;
    width: 100%;
}

.px-showcase .px-wide {
    grid-column: span 2;
}

.px-what-do {
    margin-top: 50px;
}

@media (min-width: 769px) {
    #px-product-drawer {
        display: none;
    }
}

/* mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-stats,
    .modules,
    .metrics,
    .industries,
    .logo-row {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 100px 0 10px;
    }

    .hero p {
        font-size: 16px;
        text-align: center;
        max-width: 100% !important;
    }

    .dashboard {
        inset: 20px 0 0 0;
    }

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

    .container {
        width: 95%;
        margin: 0 auto;
    }

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

    .hero-visual {
        max-width: 100%;
        width: 100%;
    }
    .showcase {
        grid-template-columns: 1fr;
    }

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

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

    .hero-visual {
        min-height: auto;
    }

    .dashboard {
        position: relative;
        inset: auto;
        margin-top: 20px;
    }

    .hero p {
        max-width: 768px;
    }

    .ai-head-box {
        max-width: 780px;
        padding: 10px 10px;
    }

    .eyebrow {
        display: block;
        margin: 0 auto;
        max-width: 80%;
        text-align: center;
        gap: 10px;
        font-size: 13px;
        color: #333;
        padding: 8px 14px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        background: rgba(0, 0, 0, 0.04);
        border-radius: 999px;
        box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.05);
        font-family: "Inter", sans-serif;
        font-weight: 400;
    }

    .hero-grid {
        text-align: center;
    }

    #why-7pixel-products .showcase {
        grid-template-columns: 1fr;
    }

    #why-7pixel-products {
        padding-top: 30px;
    }

    #why-7pixel-products .showcase-card:last-child {
        display: none;
    }

    .hero-grid h1 {
        text-align: center;
        max-width: 100%;
    }
    .hero-grid p {
        max-width: 100%;
    }

    .hero-cta {
        display: block;
        text-align: center;
    }
    .hero-cta a {
        margin: 8px 10px;
    }

    .px-showcase .px-webshop:hover .px-phone {
        transform: translateX(-50%) rotate(8deg) !important;
    }

    .px-showcase .px-crm-amount,
    .px-showcase .px-crm-new {
        font-size: 34px !important;
        line-height: 1.1 !important;
    }

    .px-showcase .px-insights {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: 100% !important;
        margin-bottom: 14px !important;
        font-size: 10pt !important;
        z-index: 1 !important;
    }

    .px-showcase .px-graph-wrap {
        height: auto !important;
    }

    .px-showcase .px-graph {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        height: 140px !important;
        margin-top: 0 !important;
    }

    .px-showcase .px-table-wrap {
        width: 100% !important;
        overflow-x: auto !important;
        overflow-y: auto !important;
        max-height: 240px !important;
    }

    .px-showcase .px-header {
        gap: 10px;
        flex-wrap: wrap;
    }

    .px-showcase .px-btn {
        max-width: 100%;
    }
}

/* MOBILE NAV */
@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: -80px;
        right: -100%;

        width: 100%;
        height: 100vh;

        background: #fff;
        padding: 40px;

        flex-direction: column;
        gap: 10px;

        transition: right 0.3s ease;
        z-index: 999;
        border-radius: 40px;
        font-size: 18pt;
    }

    .chart {
        height: 140px;
    }

    .nav-menu.open {
        right: 0;
    }

    /* DROPDOWN MOBILE RESET */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;

        background: transparent;
        border: none;
        box-shadow: none;

        padding-left: 12px;
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 8px 0;
        font-size: 14px;
    }
}

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

@media (max-width: 640px) {
    .px-why-ai {
        padding: 30px 0 !important;
    }
    #modules {
        padding-top: 40px;
    }
    .hero {
        padding-bottom: 30px !important;
    }
    .px-why-grid {
        grid-template-columns: 1fr;
    }

    .px-why-head {
        margin: 0 auto 10px;
    }

    .px-why-card {
        padding: 24px 22px;
    }

    .px-why-head p {
        font-size: 16px;
    }

    .nx-journey {
        padding: 30px 0;
    }
    .hero-visual {
        margin-bottom: 60px;
    }
}

@media (min-width: 541px) {
    .mobile-show {
        display: none !important;
    }
}

@media (max-width: 540px) {
    .nx-panel {
        padding: 10px;
    }
    .hero {
        padding-top: 120px;
    }
    .px-usecases,
    .cta,
    .section {
        padding: 30px 0;
    }

    .nx-ui-mock {
        display: none;
    }

    .nx-left {
        flex: 1;
    }
    .nx-right {
        flex: 0;
    }

    .nx-journey-panel {
        padding: 15px;
    }

    .nx-step span {
        display: block;
        font-size: 14pt;
    }
    .nx-step {
        font-size: 10pt;
    }
    .chart {
        height: 250px;
    }
    .pt-100 {
        padding-top: 10px;
    }
    .mobile-hide {
        display: none !important;
    }

    .logo img {
        height: 25px;
    }
    .nav-inner {
        height: 60px;
        gap: 20px;
    }
    .px-showcase .px-grid {
        grid-template-columns: 1fr;
    }

    .px-showcase .px-wide {
        grid-column: span 1;
    }
    .px-usecase-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hero-visual {
        min-height: auto;
    }

    .float-1 {
        left: 0px;
        bottom: 60px;
    }
    .float-2 {
        right: 0px;
        bottom: -40px;
    }

    .ai-head-box {
        max-width: 780px;
        padding: 30px 30px;
    }

    .px-showcase {
        padding-top: 0;
        margin-top: 0;
    }
    .ai-head-box h2 {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .px-usecases .section-head {
        width: 100% !important;
    }

    #why-7pixel-products {
        padding-bottom: 50px;
    }
    .px-sub {
        margin-bottom: 20px !important;
    }

    .ai-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* very small phones */
@media (max-width: 480px) {
    .px-showcase .container {
        width: calc(100% - 24px) !important;
    }

    .px-showcase .px-card {
        padding: 18px !important;
        border-radius: 18px !important;
    }

    .px-showcase .px-phone {
        width: 208px !important;
        height: 250px !important;
        bottom: -108px !important;
        transform: translateX(-50%) rotate(0deg) translateY(0px) !important;
    }

    .px-showcase .px-crm-amount,
    .px-showcase .px-crm-new {
        font-size: 30px !important;
    }
}

/*** AUTHENTICATION ***/
.login-page {
    min-height: 100vh;
    padding: 140px 20px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(59, 130, 246, 0.18),
            transparent 26%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(255, 122, 0, 0.12),
            transparent 24%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.9),
            rgba(238, 242, 255, 0.75)
        );
    position: relative;
    overflow: hidden;
}

.login-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
    background-size: 90px 90px;
    opacity: 0.35;
}

.login-card {
    width: min(460px, 100%);
    position: relative;
    z-index: 2;
    padding: 42px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.14);
}

.login-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 34px;
}

.login-brand img {
    height: 30px;
}

.login-brand span {
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    color: var(--primary);
    background: rgba(45, 66, 126, 0.08);
    border: 1px solid rgba(45, 66, 126, 0.12);
}

.login-card h1 {
    font-size: 34px;
    margin-bottom: 12px;
    color: #000;
}

.login-subtitle {
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.login-field {
    margin-bottom: 18px;
}

.login-field label {
    color: #222;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.login-input {
    width: 100%;
    margin-top: 8px;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.8);
}

.login-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(45, 66, 126, 0.08);
}

.login-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin: 6px 0 24px;
    font-size: 13px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
}

.login-row a {
    color: var(--primary);
    font-weight: 600;
}

.login-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    border-radius: 999px;
    padding: 15px 24px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary), #222, var(--primary));
    box-shadow: 0 14px 30px rgba(45, 66, 126, 0.25);
}

.login-btn:hover {
    transform: translateY(-2px);
}

.login-error {
    margin-top: 8px;
}

@media (max-width: 540px) {
    .login-page {
        padding: 110px 16px 50px;
    }

    .login-card {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .login-card h1 {
        font-size: 28px;
    }

    .login-brand {
        align-items: flex-start;
        gap: 16px;
        flex-direction: column;
    }

    .login-row {
        align-items: flex-start;
        flex-direction: column;
    }
}
