        :root {
            --teal: #007F80;
            --teal-dark: #006375;
            --teal-light: #e8f6f6;
            --teal2: #006375;
            --teal3: #007F80;
            --ink: #05141f;
            --muted: #4A7A80;
            --light: #e8f6f6;
            --white: #ffffff;
            --bg: #f0f9f9;
            --border: rgba(0, 127, 128, .15);
        }

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

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: "Tajawal", sans-serif;
            background: var(--white);
            color: var(--ink);
            direction: rtl;
            overflow-x: hidden
        }

        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #f5fefe 0%, #f0f9f9 40%, #e8f6f6 100%);
            position: relative;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            padding: 20px 60px 80px
        }

        .hero-content {
            position: relative;
            z-index: 1
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 127, 128, .1);
            border: 1px solid rgba(0, 127, 128, .25);
            color: var(--teal2);
            padding: 8px 20px;
            border-radius: 40px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 20px
        }

        .hero-badge svg {
            width: 14px;
            height: 14px;
            stroke: var(--teal);
            fill: none;
            stroke-width: 2
        }

        .hero-title {
            font-size: clamp(28px, 4vw, 52px);
            font-weight: 900;
            color: var(--ink);
            line-height: 1.1;
            letter-spacing: -2px;
            margin-bottom: 14px
        }

        .hero-title .accent {
            color: var(--teal)
        }

        .hero-desc {
            font-size: 15px;
            color: var(--muted);
            line-height: 1.8;
            margin-bottom: 28px
        }

        .hero-btns {
            display: flex;
            gap: 12px;
            margin-bottom: 32px;
            flex-wrap: wrap;
            justify-content: right !important;
        }

        .btn-pri {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: var(--teal);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-family: "Tajawal", sans-serif;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all .3s;
            box-shadow: 0 4px 16px rgba(0, 127, 128, .25)
        }

        .btn-pri:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 127, 128, .35)
        }

        .btn-ol {
            padding: 14px 32px;
            background: transparent;
            color: var(--teal);
            border: 2px solid var(--teal);
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            font-family: "Tajawal", sans-serif;
            transition: all .3s
        }

        .btn-ol:hover {
            background: var(--light)
        }

        .hstats {
            display: flex;
            background: rgba(0, 127, 128, .05);
            border: 1px solid rgba(0, 127, 128, .15);
            border-radius: 16px;
            overflow: hidden
        }

        .hstat {
            flex: 1;
            padding: 16px 18px;
            text-align: center;
            border-left: 1px solid rgba(0, 127, 128, .12)
        }

        .hstat:last-child {
            border-left: none
        }

        .hstat-num {
            font-size: 26px;
            font-weight: 900;
            color: var(--teal2);
            letter-spacing: -1px
        }

        .hstat-lbl {
            font-size: 11px;
            color: var(--muted);
            margin-top: 3px
        }

        .dc {
            background: #fff;
            border-radius: 20px;
            padding: 18px;
            box-shadow: 0 16px 50px rgba(0, 127, 128, .06), 0 4px 12px rgba(0, 0, 0, .04);
            border: 1.5px solid var(--border);
            animation: floatCard 6s ease-in-out infinite
        }

        @keyframes floatCard {

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

            50% {
                transform: translateY(-8px)
            }
        }

        .mac-dots {
            display: flex;
            gap: 6px;
            margin-bottom: 12px
        }

        .md {
            width: 10px;
            height: 10px;
            border-radius: 50%
        }

        .md.r {
            background: #ff5f56
        }

        .md.y {
            background: #ffbd2e
        }

        .md.g {
            background: #27c93f
        }

        .dc-ttl {
            font-size: 13px;
            font-weight: 800;
            color: var(--ink);
            text-align: center;
            margin-bottom: 4px
        }

        .dc-sub {
            font-size: 10px;
            color: var(--muted);
            text-align: center;
            margin-bottom: 12px
        }

        .duo {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            margin-bottom: 10px
        }

        .dbox {
            border-radius: 10px;
            padding: 10px;
            text-align: center
        }

        .dbox.a {
            background: rgba(0, 127, 128, .08);
            border: 1px solid rgba(0, 127, 128, .2)
        }

        .dbox.b {
            background: rgba(0, 99, 117, .08);
            border: 1px solid rgba(0, 99, 117, .2)
        }

        .dbox svg {
            width: 16px;
            height: 16px;
            stroke: var(--teal);
            fill: none;
            stroke-width: 2;
            margin: 0 auto 4px;
            display: block
        }

        .dbox-lbl {
            font-size: 9px;
            color: var(--muted)
        }

        .dbox-val {
            font-size: 18px;
            font-weight: 900;
            color: var(--teal2)
        }

        .sbox {
            background: linear-gradient(135deg, var(--teal), var(--teal2));
            border-radius: 10px;
            padding: 12px;
            margin-bottom: 10px;
            color: #fff
        }

        .sbox-lbl {
            font-size: 9px;
            opacity: .8;
            margin-bottom: 2px
        }

        .sbox-val {
            font-size: 20px;
            font-weight: 900;
            letter-spacing: -.5px
        }

        .sbox-chg {
            font-size: 10px;
            opacity: .85;
            margin-top: 2px
        }

        .divider {
            height: 1px;
            background: var(--border);
            margin: 8px 0
        }

        .s4 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 7px;
            margin-bottom: 10px
        }

        .sb {
            border-radius: 9px;
            padding: 9px
        }

        .sb.a {
            background: rgba(0, 127, 128, .07);
            border: 1px solid rgba(0, 127, 128, .15)
        }

        .sb.b {
            background: rgba(0, 99, 117, .07);
            border: 1px solid rgba(0, 99, 117, .15)
        }

        .sb-row {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-bottom: 4px
        }

        .sb-ico svg {
            width: 11px;
            height: 11px;
            stroke: var(--teal);
            fill: none;
            stroke-width: 2
        }

        .sb-lbl {
            font-size: 9px;
            color: var(--muted)
        }

        .sb-val {
            font-size: 15px;
            font-weight: 900;
            color: var(--ink)
        }

        .sb-chg {
            font-size: 9px;
            color: var(--teal);
            font-weight: 700
        }

        .ord {
            background: var(--bg);
            border-radius: 7px;
            padding: 7px 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px solid var(--border);
            margin-bottom: 5px
        }

        .ord-nm {
            font-size: 10px;
            font-weight: 700;
            color: var(--ink)
        }

        .ord-mt {
            font-size: 9px;
            color: var(--muted);
            margin-top: 1px
        }

        .ord-r {
            display: flex;
            align-items: center;
            gap: 5px
        }

        .ord-pr {
            font-size: 11px;
            font-weight: 900;
            color: var(--teal)
        }

        .pill {
            padding: 2px 7px;
            border-radius: 40px;
            font-size: 8px;
            font-weight: 800
        }

        .p-new {
            background: var(--light);
            color: var(--teal2)
        }

        .p-prog {
            background: #FEF3C7;
            color: #92400E
        }

        .p-done {
            background: #DCFCE7;
            color: #166534
        }

        .section-label {
            display: inline-flex;
            justify-content: center;
            gap: 8px;
            background: var(--light);
            color: var(--teal2);
            border: 1px solid rgba(0, 127, 128, .2);
            padding: 8px 20px;
            border-radius: 40px;
            font-size: 13px;
            font-weight: 800;
            margin-bottom: 16px;
            align-items: center
        }

        .section-label svg {
            width: 14px;
            height: 14px;
            stroke: var(--teal);
            fill: none;
            stroke-width: 2
        }

        .section-title {
            font-size: clamp(24px, 3vw, 42px);
            font-weight: 900;
            color: var(--ink);
            line-height: 1.2;
            letter-spacing: -1px;
            margin-bottom: 16px
        }

        .section-title .accent {
            color: var(--teal)
        }

        .section-sub {
            font-size: 15px;
            color: var(--muted);
            line-height: 1.8
        }

        .sec-head {
            text-align: center;
            margin-bottom: 44px
        }

        [data-reveal] {
            opacity: 0;
            transition: opacity .6s, transform .6s
        }

        [data-reveal="left"] {
            transform: translateX(-28px)
        }

        [data-reveal="right"] {
            transform: translateX(28px)
        }

        [data-reveal="up"] {
            transform: translateY(28px)
        }

        [data-reveal="fade"] {
            transform: none
        }

        [data-reveal].in {
            opacity: 1;
            transform: none
        }

        [data-delay="1"] {
            transition-delay: .1s
        }

        [data-delay="2"] {
            transition-delay: .2s
        }

        [data-delay="3"] {
            transition-delay: .3s
        }

        [data-delay="4"] {
            transition-delay: .4s
        }

        .trust-sect {
            padding: 44px 60px;
            background: var(--white);
            border-bottom: 1px solid var(--border)
        }

        .trust-lbl {
            text-align: center;
            font-size: 13px;
            color: var(--muted);
            font-weight: 700;
            margin-bottom: 24px
        }

        .trust-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap
        }

        .trust-logo {
            font-size: 15px;
            font-weight: 900;
            color: var(--muted);
            opacity: .5;
            letter-spacing: -0.5px;
            transition: opacity .3s
        }

        .trust-logo:hover {
            opacity: .8
        }

        .feat-sect {
            padding: 80px 60px;
            background: var(--white)
        }

        .feat-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px
        }

        .feat-card {
            background: var(--white);
            border: 1.5px solid var(--border);
            border-radius: 24px;
            padding: 28px 22px;
            transition: all .4s;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px)
        }

        .feat-card.in {
            opacity: 1;
            transform: translateY(0)
        }

        .feat-card::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--teal3), var(--teal));
            transform: scaleX(0);
            transform-origin: right;
            transition: transform .45s
        }

        .feat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 32px rgba(0, 127, 128, .08);
            border-color: rgba(0, 127, 128, .28)
        }

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

        .feat-ico {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            transition: transform .4s
        }

        .feat-card:hover .feat-ico {
            transform: scale(1.15) rotate(-5deg)
        }

        .feat-ico svg {
            width: 24px;
            height: 24px;
            fill: none;
            stroke-width: 1.8
        }

        .feat-title {
            font-size: 15px;
            font-weight: 900;
            color: var(--ink);
            margin-bottom: 7px
        }

        .feat-desc {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.7
        }

        .dark-sect {
            padding: 80px 60px;
            background: linear-gradient(135deg, var(--teal-dark), var(--teal));
            position: relative;
            overflow: hidden
        }

        .dark-sect::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, .08) 0%, transparent 60%);
            pointer-events: none
        }

        .d3 {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px
        }

        .d3-card {
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .2);
            border-radius: 16px;
            padding: 26px 18px;
            text-align: center;
            transition: all .35s
        }

        .d3-card:hover {
            background: rgba(255, 255, 255, .2);
            border-color: rgba(255, 255, 255, .35)
        }

        .d3-ico {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, .2);
            border-radius: 14px;
            margin: 0 auto 12px;
            display: flex;
            align-items: center;
            justify-content: center
        }

        .d3-ico svg {
            width: 22px;
            height: 22px;
            stroke: #fff;
            fill: none;
            stroke-width: 2
        }

        .d3-card h4 {
            font-size: 14px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 6px
        }

        .d3-card p {
            font-size: 12px;
            color: rgba(255, 255, 255, .7)
        }

        .btn-ghost {
            padding: 13px 36px;
            background: rgba(255, 255, 255, .15);
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, .35);
            border-radius: 50px;
            font-family: "Tajawal", sans-serif;
            font-size: 14px;
            font-weight: 800;
            cursor: pointer;
            transition: all .3s;
            backdrop-filter: blur(8px)
        }

        .btn-ghost:hover {
            background: rgba(255, 255, 255, .25)
        }

        .split-sect {
            padding: 80px 60px
        }

        .split-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center
        }

        .s-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--light);
            color: var(--teal2);
            border: 1px solid rgba(0, 127, 128, .2);
            padding: 7px 18px;
            border-radius: 40px;
            font-size: 13px;
            font-weight: 800;
            margin-bottom: 18px
        }

        .s-badge svg {
            width: 14px;
            height: 14px;
            stroke: var(--teal);
            fill: none;
            stroke-width: 2
        }

        .split-title {
            font-size: clamp(22px, 2.8vw, 36px);
            font-weight: 900;
            color: var(--ink);
            letter-spacing: -.5px;
            line-height: 1.25;
            margin-bottom: 16px
        }

        .split-title span {
            color: var(--teal2)
        }

        .split-desc {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.85;
            margin-bottom: 28px
        }

        .f-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-bottom: 32px
        }

        .f-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 16px;
            transition: all .3s
        }

        .f-item:hover {
            background: var(--light);
            border-color: rgba(0, 127, 128, .3);
            transform: translateX(-4px)
        }

        .f-ico {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0
        }

        .f-ico svg {
            width: 17px;
            height: 17px;
            fill: none;
            stroke-width: 2
        }

        .f-title {
            font-size: 13px;
            font-weight: 800;
            color: var(--ink);
            margin-bottom: 3px
        }

        .f-desc {
            font-size: 12px;
            color: var(--muted);
            line-height: 1.6
        }

        .split-btns {
            display: flex;
            gap: 12px
        }

        .btn2 {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            background: linear-gradient(135deg, var(--teal), var(--teal2));
            color: #fff;
            border: none;
            border-radius: 50px;
            font-family: "Tajawal", sans-serif;
            font-size: 14px;
            font-weight: 800;
            cursor: pointer;
            transition: all .3s;
            box-shadow: 0 3px 12px rgba(0, 127, 128, .2)
        }

        .btn2:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 127, 128, .3)
        }

        .btn3 {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            background: transparent;
            color: var(--teal2);
            border: 2px solid rgba(0, 127, 128, .3);
            border-radius: 50px;
            font-family: "Tajawal", sans-serif;
            font-size: 14px;
            font-weight: 800;
            cursor: pointer;
            transition: all .3s
        }

        .btn3:hover {
            background: var(--light);
            transform: translateY(-2px)
        }

        .mock-card {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 16px 48px rgba(0, 127, 128, .12), 0 4px 12px rgba(0, 0, 0, .06);
            overflow: hidden;
            border: 1.5px solid var(--border)
        }

        .mock-hdr {
            background: linear-gradient(135deg, var(--teal2), var(--teal));
            padding: 14px 18px;
            display: flex;
            justify-content: space-between;
            color: #fff;
            align-items: center
        }

        .mock-hdr-title {
            font-size: 13px;
            font-weight: 800
        }

        .mock-hdr-sub {
            font-size: 10px;
            opacity: .8
        }

        .mock-body {
            padding: 16px
        }

        .mock-stat-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 14px
        }

        .mstat {
            text-align: center;
            background: var(--bg);
            border-radius: 10px;
            padding: 12px 8px;
            border: 1px solid var(--border)
        }

        .mstat-num {
            font-size: 18px;
            font-weight: 900;
            color: var(--teal2)
        }

        .mstat-lbl {
            font-size: 9px;
            color: var(--muted);
            margin-top: 2px
        }

        .mrow {
            background: var(--bg);
            border-radius: 9px;
            padding: 10px 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px solid var(--border);
            margin-bottom: 6px
        }

        .mrow-name {
            font-size: 11px;
            font-weight: 700;
            color: var(--ink)
        }

        .mrow-sub {
            font-size: 9px;
            color: var(--muted);
            margin-top: 1px
        }

        .mrow-right {
            display: flex;
            align-items: center;
            gap: 6px
        }

        .mbdg {
            padding: 2px 8px;
            border-radius: 40px;
            font-size: 9px;
            font-weight: 800
        }

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

        .mbdg-y {
            background: #FEF3C7;
            color: #92400E
        }

        .mbdg-b {
            background: var(--light);
            color: var(--teal2)
        }

        .sectors-sect {
            padding: 80px 60px;
            background: var(--bg)
        }

        .sectors-grid {
            max-width: 1200px;
            margin: 40px auto 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px
        }

        .sector-card {
            background: var(--bg);
            border: 1.5px solid var(--border);
            border-radius: 24px;
            padding: 28px 22px;
            transition: all .4s;
            opacity: 0;
            transform: translateY(16px)
        }

        .sector-card.in {
            opacity: 1;
            transform: translateY(0)
        }

        .sector-card:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 127, 128, .3);
            box-shadow: 0 12px 30px rgba(0, 127, 128, .08);
            background: var(--light)
        }

        .sector-ico {
            width: 52px;
            height: 52px;
            background: var(--white);
            border: 1.5px solid var(--border);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
            transition: all .4s
        }

        .sector-card:hover .sector-ico {
            background: linear-gradient(135deg, var(--teal), var(--teal2));
            border-color: transparent
        }

        .sector-ico svg {
            width: 24px;
            height: 24px;
            stroke: var(--teal);
            fill: none;
            stroke-width: 1.8;
            transition: stroke .3s
        }

        .sector-card:hover .sector-ico svg {
            stroke: #fff
        }

        .sector-title {
            font-size: 15px;
            font-weight: 900;
            color: var(--ink);
            margin-bottom: 8px
        }

        .sector-desc {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.7
        }

        .sector-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 12px
        }

        .stag {
            padding: 3px 10px;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 40px;
            font-size: 11px;
            color: var(--teal2);
            font-weight: 700
        }

        .teal-box {
            background: linear-gradient(135deg, var(--teal-dark), var(--teal));
            border-radius: 32px;
            padding: 54px 62px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
            position: relative;
            overflow: hidden;
            max-width: 1200px;
            margin: 0 auto
        }

        .teal-box::before {
            content: "";
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, .12) 0%, transparent 60%);
            top: -100px;
            left: -100px
        }

        .tb-title {
            font-size: 19px;
            font-weight: 900;
            color: #fff;
            margin-bottom: 26px
        }

        .tb-items {
            display: flex;
            flex-direction: column;
            gap: 18px
        }

        .tb-item {
            display: flex;
            gap: 14px;
            align-items: flex-start
        }

        .tb-ico {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, .2);
            border: 1px solid rgba(255, 255, 255, .3);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0
        }

        .tb-ico svg {
            width: 17px;
            height: 17px;
            stroke: #fff;
            fill: none;
            stroke-width: 2
        }

        .tb-item h4 {
            font-size: 13px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 3px
        }

        .tb-item p {
            font-size: 12px;
            color: rgba(255, 255, 255, .65);
            line-height: 1.6
        }

        .tb-right {
            text-align: center;
            position: relative
        }

        .big-num {
            font-size: 78px;
            font-weight: 900;
            line-height: 1;
            letter-spacing: -3px;
            color: #fff
        }

        .big-lbl {
            font-size: 13px;
            color: rgba(255, 255, 255, .85);
            margin-top: 5px;
            margin-bottom: 26px;
            font-weight: 600
        }

        .small-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px
        }

        .small-num {
            font-size: 30px;
            font-weight: 900;
            color: #fff
        }

        .small-stats p {
            font-size: 11px;
            color: rgba(255, 255, 255, .6);
            margin-top: 3px
        }

        .teal-cta-btn {
            margin-top: 26px;
            width: 100%;
            padding: 13px;
            background: #fff;
            color: var(--teal2);
            border: none;
            border-radius: 50px;
            font-family: "Tajawal", sans-serif;
            font-size: 14px;
            font-weight: 900;
            cursor: pointer;
            transition: all .3s;
            box-shadow: 0 8px 24px rgba(0, 0, 0, .15)
        }

        .teal-cta-btn:hover {
            transform: translateY(-2px)
        }

        .an-sect {
            padding: 80px 60px;
            background: linear-gradient(135deg, var(--teal-dark), var(--teal));
            position: relative;
            overflow: hidden
        }

        .an-sect::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, .08) 0%, transparent 60%);
            pointer-events: none
        }

        .an-4 {
            max-width: 1000px;
            margin: 40px auto 0;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px
        }

        .an-col {
            text-align: center
        }

        .an-ico {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, .2);
            border-radius: 14px;
            margin: 0 auto 12px;
            display: flex;
            align-items: center;
            justify-content: center
        }

        .an-ico svg {
            width: 22px;
            height: 22px;
            stroke: #fff;
            fill: none;
            stroke-width: 2
        }

        .an-num {
            font-size: 32px;
            font-weight: 900;
            color: #fff;
            letter-spacing: -1px;
            margin-bottom: 5px
        }

        .an-col h4 {
            font-size: 14px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 4px
        }

        .an-col p {
            font-size: 12px;
            color: rgba(255, 255, 255, .65)
        }

        .hr-card {
            background: #fff;
            border-radius: 24px;
            padding: 26px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, .08)
        }

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

        .hr-g3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 18px
        }

        .hr-stat {
            border-radius: 11px;
            padding: 12px;
            text-align: center
        }

        .hr-stat.a {
            background: rgba(0, 127, 128, .05)
        }

        .hr-stat.b {
            background: rgba(234, 179, 8, .05)
        }

        .hr-stat.c {
            background: #f9fafb
        }

        .hr-sn {
            font-size: 21px;
            font-weight: 700;
            margin-bottom: 2px
        }

        .hr-stat.a .hr-sn {
            color: var(--teal)
        }

        .hr-stat.b .hr-sn {
            color: #eab308
        }

        .hr-stat.c .hr-sn {
            color: #DC2626
        }

        .hr-sl {
            font-size: 10px;
            color: #6b7280
        }

        .hr-rows {
            display: flex;
            flex-direction: column;
            gap: 9px;
            margin-bottom: 14px
        }

        .hr-row {
            background: #f9fafb;
            padding: 10px 12px;
            border-radius: 9px;
            display: flex;
            justify-content: space-between;
            align-items: center
        }

        .hr-nm {
            font-size: 11px;
            font-weight: 600;
            color: var(--ink)
        }

        .hr-rl {
            font-size: 10px;
            color: #6b7280;
            margin-top: 1px
        }

        .hr-nfc {
            background: linear-gradient(135deg, rgba(0, 127, 128, .05), rgba(0, 127, 128, .1));
            border: 1px solid rgba(0, 127, 128, .2);
            border-radius: 11px;
            padding: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px
        }

        .hr-nfc svg {
            width: 24px;
            height: 24px;
            stroke: var(--teal);
            fill: none;
            stroke-width: 2
        }

        .hr-nfc-t {
            font-size: 12px;
            font-weight: 600;
            color: var(--teal2)
        }

        .acc-card {
            background: #fff;
            border: 1.5px solid var(--border);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 127, 128, .06)
        }

        .acc-hdr {
            padding: 16px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border)
        }

        .acc-kpis {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            border-bottom: 1px solid var(--border)
        }

        .acc-kpi {
            padding: 18px
        }

        .acc-kpi:first-child {
            border-left: 1px solid var(--border)
        }

        .acc-kpi-pct {
            font-size: 11px;
            font-weight: 800;
            color: var(--teal);
            margin-bottom: 4px
        }

        .acc-kpi-val {
            font-size: 21px;
            font-weight: 900;
            color: var(--ink);
            letter-spacing: -1px;
            margin-bottom: 3px
        }

        .acc-kpi-lbl {
            font-size: 10px;
            color: var(--muted)
        }

        .acc-months {
            padding: 18px
        }

        .acc-mrow {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 6px 7px;
            border-radius: 9px;
            margin-bottom: 3px;
            transition: background .2s
        }

        .acc-mrow:hover {
            background: var(--bg)
        }

        .acc-mrow.hl {
            background: var(--light)
        }

        .acc-mn {
            font-size: 11px;
            font-weight: 800;
            color: var(--ink);
            min-width: 38px
        }

        .acc-bg {
            flex: 1;
            height: 6px;
            background: var(--bg);
            border-radius: 40px;
            overflow: hidden
        }

        .acc-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--teal2), var(--teal3));
            border-radius: 40px;
            transition: width 1.5s
        }

        .acc-pct {
            font-size: 10px;
            color: var(--teal);
            font-weight: 800
        }

        .acc-acts {
            display: flex;
            gap: 7px;
            padding: 12px 18px;
            border-top: 1px solid var(--border)
        }

        .acc-btn {
            flex: 1;
            padding: 8px;
            border-radius: 9px;
            font-family: "Tajawal", sans-serif;
            font-size: 12px;
            font-weight: 800;
            cursor: pointer;
            border: none
        }

        .ab-blue {
            background: var(--light);
            color: var(--teal2)
        }

        .ab-green {
            background: #DCFCE7;
            color: #166534
        }

        .ab-gray {
            background: var(--bg);
            color: var(--muted);
            border: 1px solid var(--border)
        }

        .crm-card {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 16px 48px rgba(0, 127, 128, .12);
            overflow: hidden;
            border: 1.5px solid var(--border)
        }

        .crm-hdr {
            background: linear-gradient(135deg, var(--teal2), var(--teal));
            padding: 14px 18px;
            color: #fff
        }

        .crm-hdr h4 {
            font-size: 13px;
            font-weight: 800;
            margin-bottom: 2px
        }

        .crm-hdr p {
            font-size: 10px;
            opacity: .8
        }

        .crm-kpis {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border-bottom: 1px solid var(--border)
        }

        .crm-kpi {
            padding: 12px 8px;
            text-align: center;
            border-left: 1px solid var(--border)
        }

        .crm-kpi:last-child {
            border-left: none
        }

        .crm-kpi-num {
            font-size: 18px;
            font-weight: 900;
            color: var(--teal2)
        }

        .crm-kpi-lbl {
            font-size: 9px;
            color: var(--muted);
            margin-top: 2px
        }

        .crm-body {
            padding: 14px
        }

        .crm-row {
            background: var(--bg);
            border-radius: 9px;
            padding: 10px 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px solid var(--border);
            margin-bottom: 6px;
            transition: all .25s
        }

        .crm-row:hover {
            border-color: rgba(0, 127, 128, .3);
            transform: translateX(-3px)
        }

        .crm-av {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--teal), var(--teal2));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 900;
            color: #fff;
            flex-shrink: 0
        }

        .crm-name {
            font-size: 11px;
            font-weight: 700;
            color: var(--ink)
        }

        .crm-sub {
            font-size: 9px;
            color: var(--muted);
            margin-top: 1px
        }

        .crm-tag {
            padding: 2px 8px;
            border-radius: 40px;
            font-size: 9px;
            font-weight: 800
        }

        .ct-high {
            background: #FEE2E2;
            color: #991B1B
        }

        .ct-prog {
            background: var(--light);
            color: var(--teal2)
        }

        .ct-new {
            background: #FEF3C7;
            color: #92400E
        }

        .ct-won {
            background: #DCFCE7;
            color: #166534
        }

        .dist-card {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 16px 48px rgba(0, 127, 128, .08);
            overflow: hidden;
            border: 1.5px solid var(--border)
        }

        .dist-hdr {
            background: linear-gradient(135deg, var(--teal2), var(--teal));
            padding: 14px 18px;
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center
        }

        .dist-body {
            padding: 16px
        }

        .dist-map {
            background: var(--bg);
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 12px;
            border: 1px solid var(--border)
        }

        .dist-route {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px
        }

        .dist-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            flex-shrink: 0
        }

        .dist-dot.o {
            background: var(--teal)
        }

        .dist-dot.d {
            background: #D97706
        }

        .dist-dot.x {
            background: #DC2626
        }

        .dist-line {
            flex: 1;
            height: 1px;
            border-top: 2px dashed rgba(0, 127, 128, .3)
        }

        .dist-label {
            font-size: 10px;
            font-weight: 700;
            color: var(--ink)
        }

        .dist-sub {
            font-size: 9px;
            color: var(--muted)
        }

        .dist-stat-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px
        }

        .dstat {
            background: var(--bg);
            border-radius: 9px;
            padding: 10px;
            text-align: center;
            border: 1px solid var(--border)
        }

        .dstat-num {
            font-size: 16px;
            font-weight: 900;
            color: var(--teal2)
        }

        .dstat-lbl {
            font-size: 9px;
            color: var(--muted);
            margin-top: 2px
        }

        .cta-wrap {
            padding: 0 60px 80px
        }

        .cta-box {
            max-width: 1200px;
            margin: 0 auto;
            background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, #2a9090 100%);
            border-radius: 32px;
            padding: 80px;
            text-align: center;
            position: relative;
            overflow: hidden
        }

        .cta-orb1 {
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, .15) 0%, transparent 60%);
            top: -100px;
            right: -100px;
            border-radius: 50%
        }

        .cta-orb2 {
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 255, 255, .1) 0%, transparent 60%);
            bottom: -80px;
            left: -80px;
            border-radius: 50%
        }

        .cta-in {
            position: relative;
            z-index: 1
        }

        .cta-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, .2);
            border: 1px solid rgba(255, 255, 255, .35);
            color: #fff;
            padding: 8px 20px;
            border-radius: 40px;
            font-size: 13px;
            font-weight: 800;
            margin-bottom: 18px
        }

        .cta-badge svg {
            width: 14px;
            height: 14px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2
        }

        .cta-box h2 {
            font-size: clamp(28px, 4vw, 50px);
            font-weight: 900;
            color: #fff;
            letter-spacing: -2px;
            margin-bottom: 12px;
            line-height: 1.1
        }

        .cta-p {
            font-size: 16px;
            color: rgba(255, 255, 255, .75);
            margin-bottom: 34px
        }

        .perks {
            display: flex;
            gap: 22px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 38px
        }

        .perk {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, .85);
            font-size: 13px;
            font-weight: 700
        }

        .perk svg {
            width: 13px;
            height: 13px;
            stroke: #fff;
            fill: none;
            stroke-width: 2.5
        }

        .cta-btns {
            display: flex;
            gap: 12px;
            justify-content: center
        }

        .btn-w {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 15px 34px;
            background: #fff;
            color: var(--teal2);
            border: none;
            border-radius: 50px;
            font-family: "Tajawal", sans-serif;
            font-size: 15px;
            font-weight: 900;
            cursor: pointer;
            transition: all .3s;
            box-shadow: 0 4px 16px rgba(0, 0, 0, .15)
        }

        .btn-w:hover {
            transform: translateY(-2px)
        }

        .btn-ghost2 {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 15px 34px;
            background: rgba(255, 255, 255, .15);
            color: #fff;
            border: 2px solid rgba(255, 255, 255, .35);
            border-radius: 50px;
            font-family: "Tajawal", sans-serif;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all .3s
        }

        .btn-ghost2:hover {
            background: rgba(255, 255, 255, .25);
            transform: translateY(-2px)
        }


        .sp {
            margin-bottom: 8px
        }

        .sp-row {
            display: flex;
            justify-content: space-between;
            font-size: 11px;
            color: var(--muted);
            margin-bottom: 4px
        }

        .sp-bg {
            height: 5px;
            background: var(--light);
            border-radius: 40px;
            overflow: hidden
        }

        .sp-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--teal2), var(--teal3));
            border-radius: 40px;
            transition: width 1.5s
        }

        @keyframes floatUp {

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

            50% {
                transform: translateY(-20px)
            }
        }

        @keyframes floatDown {

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

            50% {
                transform: translateY(20px)
            }
        }

        @media(max-width:1100px) {
            nav {
                padding: 0 24px
            }

            .hero {
                grid-template-columns: 1fr;
                padding: 100px 24px 60px
            }

            .hero-visual {
                display: none
            }

            .trust-sect,
            .feat-sect,
            .dark-sect,
            .split-sect,
            .sectors-sect,
            .an-sect,
            .cta-wrap {
                padding-left: 24px;
                padding-right: 24px
            }

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

            .split-inner,
            .teal-box {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 32px 24px
            }

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

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

            .cta-box {
                padding: 44px 24px
            }

            .footer-in {
                grid-template-columns: 1fr 1fr
            }

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

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