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

        html {
            font-size: 16px;
            scroll-behavior: smooth;
            overflow-x: hidden
        }

        :root {
            --blue: #1A56DB;
            --blue-dk: #1341B8;
            --blue-lt: #EEF2FF;
            --orange: #F05A00;
            --orange-lt: #FFF4EE;
            --green: #16A34A;
            --green-lt: #F0FDF4;
            --white: #FFFFFF;
            --g50: #F9FAFB;
            --g100: #F3F4F6;
            --g200: #E5E7EB;
            --g300: #D1D5DB;
            --g400: #9CA3AF;
            --g500: #6B7280;
            --g600: #4B5563;
            --g700: #374151;
            --g800: #1F2937;
            --g900: #111827;
            --fh: 'Plus Jakarta Sans', sans-serif;
            --fb: 'Literata', Georgia, serif;
            --max: 1180px;
            --px: 20px;
            --sec: 72px;
            --rsm: 8px;
            --rmd: 12px;
            --rlg: 18px;
            --sh-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .04);
            --sh-md: 0 4px 16px rgba(0, 0, 0, .08), 0 2px 8px rgba(0, 0, 0, .04);
            --sh-lg: 0 12px 40px rgba(0, 0, 0, .1), 0 4px 16px rgba(0, 0, 0, .06);
            --ease: cubic-bezier(.25, .46, .45, .94);
        }

        body {
            font-family: var(--fb);
            background: var(--white);
            color: var(--g800);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased
        }

        a {
            text-decoration: none;
            color: inherit
        }

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

        ul,
        ol {
            padding-left: 0;
            list-style: none
        }

        .wrap {
            max-width: var(--max);
            margin: 0 auto;
            padding: 0 var(--px)
        }

        .section {
            padding: var(--sec) 0
        }

        .section--gray {
            background: var(--g50)
        }

        .section--blue {
            background: var(--blue-lt)
        }

        /* TOP BAR */
        .top-bar {
            background: var(--blue);
            color: #fff;
            text-align: center;
            padding: 9px 20px;
            font-family: var(--fh);
            font-size: 13px;
            font-weight: 500;
            line-height: 1.4
        }

        .top-bar a {
            color: #FFD700;
            font-weight: 700;
            text-decoration: underline
        }

        .bar-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap
        }

        .live-dot {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(255, 255, 255, .15);
            border-radius: 20px;
            padding: 2px 10px 2px 6px;
            font-size: 12px;
            flex-shrink: 0
        }

        .live-dot::before {
            content: '';
            width: 7px;
            height: 7px;
            background: #4ADE80;
            border-radius: 50%;
            animation: livePulse 1.8s ease infinite;
            flex-shrink: 0
        }

        @keyframes livePulse {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: .3
            }
        }

        /* NAV */
        .nav {
            position: sticky;
            top: 0;
            z-index: 900;
            background: var(--white);
            border-bottom: 2px solid var(--g100);
            box-shadow: 0 2px 12px rgba(0, 0, 0, .06)
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 9px;
            font-family: var(--fh);
            font-weight: 800;
            font-size: 20px;
            color: var(--g900);
            flex-shrink: 0;
            text-decoration: none
        }

        .logo-mark {
            width: 36px;
            height: 36px;
            background: var(--blue);
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0
        }

        .logo em {
            color: var(--blue);
            font-style: normal
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2px;
            flex: 1;
            justify-content: center
        }

        .nav-links a {
            font-family: var(--fh);
            font-size: 14px;
            font-weight: 600;
            color: var(--g600);
            padding: 8px 14px;
            border-radius: var(--rsm);
            transition: all .18s var(--ease);
            white-space: nowrap
        }

        .nav-links a:hover {
            color: var(--blue);
            background: var(--blue-lt)
        }

        .nav-erp {
            background: var(--blue) !important;
            color: #fff !important;
            padding: 9px 18px !important;
            border-radius: var(--rsm) !important;
            font-weight: 700 !important;
            transition: background .2s !important;
            white-space: nowrap;
            flex-shrink: 0
        }

        .nav-erp:hover {
            background: var(--blue-dk) !important
        }

        /* HAMBURGER */
        .hamburger {
            display: none;
            background: none;
            border: 1.5px solid var(--g200);
            border-radius: var(--rsm);
            padding: 8px 10px;
            cursor: pointer;
            flex-shrink: 0;
            gap: 4px;
            flex-direction: column;
            align-items: center;
            justify-content: center
        }

        .hamburger span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--g700);
            border-radius: 2px;
            transition: all .25s
        }

        .hamburger.open span:nth-child(1) {
            transform: translateY(6px) rotate(45deg)
        }

        .hamburger.open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0)
        }

        .hamburger.open span:nth-child(3) {
            transform: translateY(-6px) rotate(-45deg)
        }

        /* MOBILE NAV */
        .mobile-nav {
            display: none;
            background: var(--white);
            border-bottom: 1px solid var(--g100);
            overflow: hidden;
            max-height: 0;
            transition: max-height .4s var(--ease)
        }

        .mobile-nav.open {
            max-height: 700px
        }

        .mob-section {
            padding: 8px 0;
            border-bottom: 1px solid var(--g100)
        }

        .mob-label {
            font-family: var(--fh);
            font-size: 11px;
            font-weight: 700;
            color: var(--g400);
            text-transform: uppercase;
            letter-spacing: 1.2px;
            padding: 8px 20px 4px
        }

        .mobile-nav a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            font-family: var(--fh);
            font-size: 15px;
            font-weight: 600;
            color: var(--g700);
            transition: all .15s
        }

        .mobile-nav a:hover {
            color: var(--blue);
            background: var(--blue-lt)
        }

        .mob-erp-btn {
            display: block;
            margin: 12px 20px 16px;
            background: var(--blue);
            color: #fff !important;
            text-align: center;
            padding: 13px 20px !important;
            border-radius: var(--rmd) !important;
            font-size: 16px !important;
            font-weight: 700 !important
        }

        /* BREADCRUMB */
        .breadcrumb {
            background: var(--g50);
            border-bottom: 1px solid var(--g200);
            padding: 9px 0;
            font-size: 13px;
            font-family: var(--fh)
        }

        .breadcrumb-inner {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--g500)
        }

        .breadcrumb a {
            color: var(--blue)
        }

        .breadcrumb a:hover {
            text-decoration: underline
        }

        /* HERO */
        .hero {
            background: linear-gradient(160deg, #EEF2FF 0%, #DBEAFE 50%, #F0FDF4 100%);
            padding: 52px 0 60px;
            position: relative;
            overflow: hidden
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(var(--g200) 1px, transparent 1px), linear-gradient(90deg, var(--g200) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: .35;
            pointer-events: none
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            text-align: center
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: var(--white);
            border: 1.5px solid var(--g200);
            color: var(--green);
            padding: 6px 16px;
            border-radius: 50px;
            font-family: var(--fh);
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 22px;
            box-shadow: var(--sh-sm)
        }

        .hero-badge .dot {
            width: 8px;
            height: 8px;
            background: var(--green);
            border-radius: 50%;
            animation: livePulse 1.8s ease infinite;
            flex-shrink: 0
        }

        .hero h1 {
            font-family: var(--fh);
            font-size: clamp(30px, 6vw, 58px);
            font-weight: 800;
            color: var(--g900);
            line-height: 1.12;
            letter-spacing: -1.5px;
            margin-bottom: 18px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto
        }

        .hero h1 mark {
            background: none;
            color: var(--blue)
        }

        .hero-desc {
            font-family: var(--fh);
            font-size: clamp(15px, 2.5vw, 18px);
            color: var(--g600);
            max-width: 580px;
            margin: 0 auto 36px;
            font-weight: 500;
            line-height: 1.6
        }

        .hero-btns {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 44px
        }

        .btn-blue {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 14px 28px;
            background: var(--blue);
            color: #fff;
            font-family: var(--fh);
            font-size: 15px;
            font-weight: 700;
            border-radius: var(--rmd);
            border: none;
            cursor: pointer;
            transition: all .2s var(--ease);
            box-shadow: 0 4px 18px rgba(26, 86, 219, .3);
            text-decoration: none;
            white-space: nowrap
        }

        .btn-blue:hover {
            background: var(--blue-dk);
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(26, 86, 219, .4)
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 13px 26px;
            background: var(--white);
            color: var(--g700);
            font-family: var(--fh);
            font-size: 15px;
            font-weight: 600;
            border-radius: var(--rmd);
            border: 1.5px solid var(--g200);
            cursor: pointer;
            transition: all .2s var(--ease);
            box-shadow: var(--sh-sm);
            text-decoration: none;
            white-space: nowrap
        }

        .btn-outline:hover {
            border-color: var(--blue);
            color: var(--blue);
            transform: translateY(-2px);
            box-shadow: var(--sh-md)
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            max-width: 700px;
            margin: 0 auto;
            background: var(--g200);
            border-radius: var(--rlg);
            overflow: hidden;
            box-shadow: var(--sh-md)
        }

        .stat-cell {
            background: var(--white);
            padding: 20px 12px;
            text-align: center
        }

        .stat-num {
            font-family: var(--fh);
            font-size: 24px;
            font-weight: 800;
            color: var(--blue);
            line-height: 1.1;
            margin-bottom: 4px
        }

        .stat-lbl {
            font-family: var(--fh);
            font-size: 11px;
            font-weight: 600;
            color: var(--g500);
            text-transform: uppercase;
            letter-spacing: .8px;
            line-height: 1.3
        }

        /* SECTION HEADERS */
        .sec-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: var(--fh);
            font-size: 12px;
            font-weight: 700;
            color: var(--blue);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            background: var(--blue-lt);
            padding: 5px 14px;
            border-radius: 30px;
            margin-bottom: 14px
        }

        .sec-title {
            font-family: var(--fh);
            font-size: clamp(24px, 4vw, 38px);
            font-weight: 800;
            color: var(--g900);
            line-height: 1.2;
            letter-spacing: -.8px;
            margin-bottom: 12px
        }

        .sec-sub {
            font-family: var(--fh);
            font-size: 16px;
            color: var(--g500);
            font-weight: 500;
            line-height: 1.6;
            max-width: 520px
        }

        .sec-hd-center {
            text-align: center
        }

        .sec-hd-center .sec-sub {
            margin: 0 auto
        }

        /* QUICK ACCESS */
        .qa-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 14px;
            margin-top: 44px
        }

        .qa-card {
            background: var(--white);
            border: 1.5px solid var(--g200);
            border-radius: var(--rlg);
            padding: 22px 16px 20px;
            text-align: center;
            transition: all .25s var(--ease);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            position: relative;
            overflow: hidden
        }

        .qa-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--blue);
            transform: scaleX(0);
            transition: transform .25s var(--ease)
        }

        .qa-card:hover {
            border-color: var(--blue);
            box-shadow: var(--sh-lg);
            transform: translateY(-5px)
        }

        .qa-card:hover::after {
            transform: scaleX(1)
        }

        .qa-ico {
            width: 52px;
            height: 52px;
            border-radius: var(--rmd);
            background: var(--blue-lt);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            transition: transform .25s;
            flex-shrink: 0
        }

        .qa-card:hover .qa-ico {
            transform: scale(1.1)
        }

        .qa-card h3 {
            font-family: var(--fh);
            font-size: 14px;
            font-weight: 700;
            color: var(--g800);
            line-height: 1.3
        }

        .qa-card p {
            font-family: var(--fh);
            font-size: 12px;
            color: var(--g500);
            line-height: 1.4;
            flex: 1
        }

        .qa-link {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-family: var(--fh);
            font-size: 13px;
            font-weight: 700;
            color: var(--blue);
            transition: gap .2s
        }

        .qa-card:hover .qa-link {
            gap: 8px
        }

        /* LIVE ALERT */
        .live-alert {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            background: var(--green-lt);
            border: 1.5px solid #BBF7D0;
            border-left: 4px solid var(--green);
            border-radius: var(--rlg);
            padding: 20px 24px;
            margin-top: 36px
        }

        .live-alert-ico {
            font-size: 28px;
            flex-shrink: 0;
            margin-top: 2px
        }

        .live-alert h4 {
            font-family: var(--fh);
            font-size: 16px;
            font-weight: 700;
            color: #15803D;
            margin-bottom: 4px
        }

        .live-alert p {
            font-family: var(--fh);
            font-size: 14px;
            color: #166534;
            line-height: 1.5
        }

        .live-alert a {
            color: #15803D;
            font-weight: 700;
            text-decoration: underline
        }

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

        .board-card {
            background: var(--white);
            border: 1.5px solid var(--g200);
            border-radius: var(--rlg);
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all .25s var(--ease)
        }

        .board-card:hover {
            border-color: var(--orange);
            box-shadow: var(--sh-md);
            transform: translateY(-3px)
        }

        .board-flag {
            width: 50px;
            height: 50px;
            border-radius: var(--rmd);
            background: var(--orange-lt);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            flex-shrink: 0
        }

        .board-info h3 {
            font-family: var(--fh);
            font-size: 15px;
            font-weight: 700;
            color: var(--g800);
            margin-bottom: 3px
        }

        .board-info p {
            font-family: var(--fh);
            font-size: 12px;
            color: var(--g500);
            margin-bottom: 10px
        }

        .board-link {
            font-family: var(--fh);
            font-size: 13px;
            font-weight: 700;
            color: var(--orange);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: gap .2s
        }

        .board-link:hover {
            gap: 8px;
            text-decoration: underline
        }

        /* FEATURES */
        .feat-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 44px
        }

        .feat-card {
            padding: 28px 22px;
            background: var(--white);
            border: 1.5px solid var(--g200);
            border-radius: var(--rlg);
            transition: all .25s var(--ease)
        }

        .feat-card:hover {
            border-color: var(--blue);
            box-shadow: var(--sh-md)
        }

        .feat-ico {
            width: 50px;
            height: 50px;
            border-radius: var(--rmd);
            background: var(--blue-lt);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 16px
        }

        .feat-card h3 {
            font-family: var(--fh);
            font-size: 17px;
            font-weight: 700;
            color: var(--g800);
            margin-bottom: 8px
        }

        .feat-card p {
            font-family: var(--fh);
            font-size: 14px;
            color: var(--g500);
            line-height: 1.6
        }

        /* RESOURCES */
        .res-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 44px
        }

        .res-card {
            background: var(--white);
            border: 1.5px solid var(--g200);
            border-radius: var(--rlg);
            overflow: hidden;
            transition: all .25s var(--ease)
        }

        .res-card:hover {
            box-shadow: var(--sh-lg);
            transform: translateY(-4px)
        }

        .res-card-head {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 20px 22px 16px;
            border-bottom: 1px solid var(--g100);
            background: var(--g50)
        }

        .res-head-ico {
            width: 38px;
            height: 38px;
            border-radius: var(--rsm);
            background: var(--blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0
        }

        .res-card-head h3 {
            font-family: var(--fh);
            font-size: 16px;
            font-weight: 700;
            color: var(--g800)
        }

        .res-card ul {
            padding: 16px 22px 20px
        }

        .res-card li {
            margin-bottom: 8px
        }

        .res-card a {
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: var(--fh);
            font-size: 14px;
            font-weight: 500;
            color: var(--g600);
            padding: 6px 8px;
            border-radius: var(--rsm);
            transition: all .18s
        }

        .res-card a::before {
            content: '›';
            font-size: 18px;
            color: var(--blue);
            font-weight: 700;
            line-height: 1;
            flex-shrink: 0;
            transition: transform .18s
        }

        .res-card a:hover {
            color: var(--blue);
            background: var(--blue-lt);
            padding-left: 12px
        }

        .res-card a:hover::before {
            transform: translateX(3px)
        }

        /* ARTICLE */
        .article-wrap {
            max-width: 820px;
            margin: 0 auto;
            padding: 60px var(--px)
        }

        .article-wrap>h2 {
            font-family: var(--fh);
            font-size: clamp(22px, 4vw, 34px);
            font-weight: 800;
            color: var(--g900);
            letter-spacing: -.6px;
            margin-bottom: 14px;
            text-align: center
        }

        .article-wrap>p.intro {
            font-family: var(--fh);
            font-size: 17px;
            color: var(--g600);
            text-align: center;
            max-width: 620px;
            margin: 0 auto 52px;
            line-height: 1.7
        }

        .content-block {
            margin-bottom: 48px;
            scroll-margin-top: 80px
        }

        .cb-head {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 18px;
            padding-bottom: 14px;
            border-bottom: 2px solid var(--g100)
        }

        .cb-num {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: var(--blue);
            color: #fff;
            font-family: var(--fh);
            font-size: 14px;
            font-weight: 800;
            border-radius: 8px;
            flex-shrink: 0
        }

        .content-block h3 {
            font-family: var(--fh);
            font-size: clamp(18px, 3vw, 22px);
            font-weight: 700;
            color: var(--g900);
            line-height: 1.3
        }

        .content-block p {
            font-size: 16px;
            color: var(--g600);
            line-height: 1.85;
            margin-bottom: 14px
        }

        .content-block a {
            color: var(--blue);
            font-weight: 600
        }

        .content-block a:hover {
            text-decoration: underline
        }

        .content-block strong {
            color: var(--g800);
            font-weight: 700
        }

        .content-block ul,
        .content-block ol {
            margin: 12px 0 16px;
            padding-left: 4px
        }

        .content-block li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 15px;
            color: var(--g600);
            line-height: 1.7;
            margin-bottom: 10px
        }

        .content-block ul li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--blue);
            flex-shrink: 0;
            margin-top: 9px
        }

        .content-block ol {
            counter-reset: step
        }

        .content-block ol li {
            counter-increment: step
        }

        .content-block ol li::before {
            content: counter(step);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 22px;
            height: 22px;
            background: var(--blue-lt);
            color: var(--blue);
            font-family: var(--fh);
            font-size: 12px;
            font-weight: 800;
            border-radius: 6px;
            flex-shrink: 0;
            margin-top: 4px
        }

        /* GRADE TABLE */
        .grade-tbl-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch
        }

        .grade-tbl {
            width: 100%;
            border-collapse: collapse;
            border-radius: var(--rlg);
            overflow: hidden;
            border: 1.5px solid var(--g200);
            margin: 20px 0;
            font-family: var(--fh)
        }

        .grade-tbl thead {
            background: var(--blue)
        }

        .grade-tbl th {
            padding: 13px 18px;
            text-align: left;
            font-size: 13px;
            font-weight: 700;
            color: #fff;
            white-space: nowrap
        }

        .grade-tbl td {
            padding: 11px 18px;
            font-size: 14px;
            color: var(--g600);
            border-bottom: 1px solid var(--g100)
        }

        .grade-tbl tr:last-child td {
            border-bottom: none
        }

        .grade-tbl tr:hover td {
            background: var(--blue-lt)
        }

        .grade-badge {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 13px
        }

        .g-o {
            background: #D1FAE5;
            color: #065F46
        }

        .g-ap {
            background: #DCFCE7;
            color: #166534
        }

        .g-a {
            background: #FEF9C3;
            color: #713F12
        }

        .g-bp {
            background: #FEF3C7;
            color: #92400E
        }

        .g-b {
            background: #FFEDD5;
            color: #9A3412
        }

        .g-c {
            background: #F3F4F6;
            color: #374151
        }

        .g-p {
            background: #F3F4F6;
            color: #6B7280
        }

        .g-f {
            background: #FEE2E2;
            color: #991B1B
        }

        /* FAQ */
        .faq-item {
            border: 1.5px solid var(--g200);
            border-radius: var(--rmd);
            margin-bottom: 10px;
            overflow: hidden;
            transition: border-color .2s
        }

        .faq-item:hover {
            border-color: var(--blue)
        }

        .faq-q {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 16px 20px;
            cursor: pointer;
            background: var(--white);
            font-family: var(--fh);
            font-size: 15px;
            font-weight: 700;
            color: var(--g800);
            user-select: none;
            list-style: none
        }

        .faq-q::marker,
        .faq-q::-webkit-details-marker {
            display: none
        }

        details[open] .faq-q {
            color: var(--blue);
            background: var(--blue-lt)
        }

        .faq-chevron {
            width: 20px;
            height: 20px;
            background: var(--blue-lt);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: var(--blue);
            flex-shrink: 0;
            transition: transform .25s
        }

        details[open] .faq-chevron {
            transform: rotate(180deg);
            background: var(--blue);
            color: #fff
        }

        .faq-a {
            padding: 0 20px 18px;
            font-family: var(--fh);
            font-size: 14px;
            color: var(--g600);
            line-height: 1.7;
            background: var(--blue-lt)
        }

        /* FOOTER */
        footer {
            background: var(--g900);
            color: var(--g300);
            padding: 60px 0 0
        }

        .foot-grid {
            display: grid;
            grid-template-columns: 2.2fr 1fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255, 255, 255, .08)
        }

        .foot-brand .logo {
            color: #fff;
            margin-bottom: 14px
        }

        .foot-brand .logo em {
            color: #93C5FD
        }

        .foot-brand .logo-mark {
            background: var(--blue)
        }

        .foot-brand p {
            font-family: var(--fh);
            font-size: 14px;
            color: var(--g400);
            line-height: 1.7;
            margin-bottom: 20px
        }

        .foot-col h4 {
            font-family: var(--fh);
            font-size: 14px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: .8px
        }

        .foot-col li {
            margin-bottom: 10px
        }

        .foot-col a {
            font-family: var(--fh);
            font-size: 14px;
            color: var(--g400);
            transition: color .18s
        }

        .foot-col a:hover {
            color: var(--white)
        }

        .foot-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            padding: 20px 0;
            font-family: var(--fh);
            font-size: 13px;
            color: var(--g500)
        }

        .foot-links {
            display: flex;
            gap: 20px
        }

        .foot-links a {
            color: var(--g400)
        }

        .foot-links a:hover {
            color: var(--white)
        }

        /* SHARE BAR */
        .share-bar {
            position: fixed;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 8px;
            z-index: 800
        }

        .sh-btn {
            width: 44px;
            height: 44px;
            border-radius: var(--rmd);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #fff;
            box-shadow: var(--sh-md);
            transition: all .2s var(--ease);
            font-size: 17px
        }

        .sh-btn:hover {
            transform: scale(1.12);
            box-shadow: var(--sh-lg)
        }

        .sh-wa {
            background: #25D366
        }

        .sh-fb {
            background: #1877F2
        }

        .sh-tw {
            background: #1DA1F2
        }

        .sh-cp {
            background: var(--blue)
        }

        .copy-toast {
            position: fixed;
            bottom: 28px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--g900);
            color: #fff;
            padding: 10px 24px;
            border-radius: 30px;
            font-family: var(--fh);
            font-size: 14px;
            font-weight: 600;
            z-index: 9999;
            animation: toastShow 3s ease forwards
        }

        @keyframes toastShow {
            0% {
                opacity: 0;
                transform: translateX(-50%) translateY(10px)
            }

            10%,
            88% {
                opacity: 1;
                transform: translateX(-50%) translateY(0)
            }

            100% {
                opacity: 0
            }
        }

        /* FAB */
        .fab {
            position: fixed;
            bottom: 72px;
            right: 16px;
            background: var(--orange);
            color: #fff;
            padding: 12px 20px;
            border-radius: 50px;
            font-family: var(--fh);
            font-weight: 700;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 7px;
            box-shadow: 0 6px 24px rgba(240, 90, 0, .4);
            z-index: 799;
            transition: all .3s var(--ease);
            animation: fabB 3s ease infinite
        }

        @keyframes fabB {

            0%,
            100% {
                box-shadow: 0 6px 24px rgba(240, 90, 0, .4)
            }

            50% {
                box-shadow: 0 8px 32px rgba(240, 90, 0, .6)
            }
        }

        .fab:hover {
            background: #D44A00;
            transform: translateY(-3px)
        }

        .fab-gone {
            opacity: 0;
            transform: translateY(80px);
            pointer-events: none
        }

        /* AD */
        .ad-block {
            text-align: center;
            margin: 40px 0;
            padding: 20px;
            background: var(--g50);
            border: 1px dashed var(--g300);
            border-radius: var(--rmd)
        }

        /* REVEAL */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity .65s var(--ease), transform .65s var(--ease)
        }

        .reveal.in {
            opacity: 1;
            transform: none
        }

        /* ===== RESPONSIVE ===== */
        @media(max-width:1024px) {
            .qa-grid {
                grid-template-columns: repeat(4, 1fr)
            }

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

            .foot-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px
            }
        }

        @media(max-width:768px) {
            :root {
                --sec: 48px
            }

            .nav-links {
                display: none
            }

            .nav-erp {
                display: none
            }

            .hamburger {
                display: flex
            }

            .mobile-nav {
                display: block
            }

            .hero {
                padding: 40px 0 48px
            }

            .hero h1 {
                letter-spacing: -.8px
            }

            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
                max-width: 340px
            }

            .stat-num {
                font-size: 20px
            }

            .qa-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px
            }

            .boards-grid {
                grid-template-columns: 1fr;
                gap: 10px
            }

            .feat-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px
            }

            .res-grid {
                grid-template-columns: 1fr;
                gap: 12px
            }

            .qa-card {
                padding: 18px 12px 16px
            }

            .qa-ico {
                width: 44px;
                height: 44px;
                font-size: 22px
            }

            .qa-card h3 {
                font-size: 13px
            }

            .qa-card p {
                display: none
            }

            .feat-card {
                padding: 20px 16px
            }

            .feat-ico {
                width: 42px;
                height: 42px
            }

            .feat-card h3 {
                font-size: 15px
            }

            .foot-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px
            }

            .foot-brand {
                grid-column: 1/-1
            }

            .share-bar {
                right: 8px
            }

            .sh-btn {
                width: 38px;
                height: 38px;
                font-size: 15px
            }

            .fab {
                bottom: 16px;
                right: 12px;
                padding: 10px 16px;
                font-size: 13px
            }

            .live-alert {
                gap: 10px;
                padding: 16px
            }

            .live-alert-ico {
                display: none
            }
        }

        @media(max-width:480px) {
            .hero-btns {
                flex-direction: column;
                align-items: stretch
            }

            .hero-btns a {
                justify-content: center
            }

            .feat-grid {
                grid-template-columns: 1fr
            }

            .foot-grid {
                grid-template-columns: 1fr
            }

            .top-bar .live-dot {
                display: none
            }

            .foot-bottom {
                flex-direction: column;
                gap: 6px;
                text-align: center
            }

            .foot-links {
                justify-content: center
            }
