/* =============================================
   DESIGN TOKENS
============================================= */
        :root {
            --abyss: #060c18;
            --bg: #0b1625;
            --bg-2: #101d32;
            --bg-3: #152540;
            --bg-hover: #1a2d4d;
            --gold: #c8a428;
            --gold-lt: #e8c84a;
            --gold-bright: #f5e48c;
            --gold-glow: rgba(200, 164, 40, .14);
            --gold-border: rgba(200, 164, 40, .22);
            --gold-border-h: rgba(200, 164, 40, .45);
            --ignite: #3b82f6;
            --ignite-bg: rgba(59, 130, 246, .12);
            --accel: #f59e0b;
            --accel-bg: rgba(245, 158, 11, .12);
            --dom: #ef4444;
            --dom-bg: rgba(239, 68, 68, .12);
            --preview: #8b5cf6;
            --success: #10b981;
            --wire: rgba(255, 255, 255, .05);
            --wire-h: rgba(255, 255, 255, .09);
            --text: #eef2f8;
            --text-muted: #637a96;
            --text-dim: #2e4060;
            --radius-sm: 8px;
            --radius: 12px;
            --radius-lg: 18px;
            --radius-xl: 24px;
            --font-ar: 'Cairo', 'Tajawal', sans-serif;
            --font-en: 'Montserrat', 'Cairo', sans-serif;
            --font: var(--font-ar);
            --ease: cubic-bezier(.4, 0, .2, 1);
            --fast: .2s var(--ease);
            --mid: .32s var(--ease);
            --slow: .5s var(--ease);
            --sh-card: 0 4px 28px rgba(0, 0, 0, .45);
            --sh-hover: 0 18px 56px rgba(0, 0, 0, .55);
            --sh-gold: 0 8px 36px rgba(200, 164, 40, .22);
            --sh-glow: 0 0 80px rgba(200, 164, 40, .09);
        }

        html[dir="ltr"] {
            --font: var(--font-en);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--bg);
            color: var(--text);
            font-family: var(--font);
            line-height: 1.65;
            overflow-x: hidden;
        }

        /* =============================================
   FLOATING BUTTONS
============================================= */
        .lang-btn {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 900;
            background: rgba(11, 22, 37, .85);
            backdrop-filter: blur(16px);
            border: 1px solid var(--gold-border);
            color: var(--gold);
            font-family: var(--font);
            font-size: 12px;
            font-weight: 800;
            padding: 8px 18px;
            border-radius: 999px;
            cursor: pointer;
            transition: var(--fast);
            letter-spacing: .4px;
        }

        html[dir="rtl"] .lang-btn {
            left: auto;
            right: 20px;
        }

        .lang-btn:hover {
            background: var(--gold-glow);
            transform: translateY(-1px);
        }

        .wa-btn {
            position: fixed;
            bottom: 28px;
            left: 28px;
            z-index: 900;
            width: 54px;
            height: 54px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 28px rgba(37, 211, 102, .4);
            transition: var(--fast);
            text-decoration: none;
            cursor: pointer;
        }

        html[dir="rtl"] .wa-btn {
            left: auto;
            right: 28px;
        }

        .wa-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 14px 40px rgba(37, 211, 102, .5);
        }

        .wa-btn svg {
            width: 27px;
            height: 27px;
            fill: #fff;
        }

        /* =============================================
   NAVIGATION
============================================= */
        .nav {
            height: 68px;
            padding: 0 5%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(11, 22, 37, .88);
            backdrop-filter: blur(24px);
            border-bottom: 1px solid var(--wire);
            position: sticky;
            top: 0;
            z-index: 200;
        }

        .nav-logo img {
            height: 36px;
        }

        .nav-logo-text {
            font-size: 22px;
            font-weight: 900;
            color: var(--gold);
            letter-spacing: 3px;
            display: none;
        }

        .nav-back {
            position: absolute;
            right: 5%;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            transition: var(--fast);
        }

        html[dir="ltr"] .nav-back {
            right: auto;
            left: 5%;
        }

        .nav-back:hover {
            color: var(--gold);
        }

        .nav-back svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        html[dir="ltr"] .nav-back svg {
            transform: rotate(180deg);
        }

        /* =============================================
   HERO
============================================= */
        .hero {
            position: relative;
            overflow: hidden;
            padding: 90px 5% 72px;
            background: var(--abyss);
            text-align: center;
        }

        .hero-mesh {
            position: absolute;
            inset: 0;
            pointer-events: none;
            background-image:
                linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
            background-size: 64px 64px;
            mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 80%);
        }

        .hero-glow {
            position: absolute;
            inset: 0;
            pointer-events: none;
            background:
                radial-gradient(ellipse 60% 60% at 30% 60%, rgba(200, 164, 40, .09) 0%, transparent 60%),
                radial-gradient(ellipse 50% 50% at 75% 30%, rgba(59, 130, 246, .05) 0%, transparent 55%),
                radial-gradient(ellipse 40% 40% at 50% 85%, rgba(239, 68, 68, .04) 0%, transparent 50%);
            animation: heroAura 12s ease-in-out infinite alternate;
        }

        @keyframes heroAura {
            from {
                opacity: .7;
                transform: scale(1);
            }

            to {
                opacity: 1;
                transform: scale(1.06);
            }
        }

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(200, 164, 40, .1);
            border: 1px solid rgba(200, 164, 40, .28);
            border-radius: 999px;
            padding: 8px 22px;
            font-size: 13px;
            font-weight: 700;
            color: var(--gold-bright);
            margin-bottom: 36px;
            letter-spacing: .3px;
        }

        .badge-dot {
            width: 7px;
            height: 7px;
            background: var(--gold);
            border-radius: 50%;
            flex-shrink: 0;
            animation: blink 2.2s ease-in-out infinite;
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: .45;
                transform: scale(1.5);
            }
        }

        .hero-h1 {
            font-size: clamp(36px, 5.5vw, 66px);
            font-weight: 900;
            line-height: 1.22;
            margin-bottom: 22px;
            letter-spacing: -.5px;
        }

        .hero-h1 .l1 {
            display: block;
            color: var(--text);
        }

        .hero-h1 .l2 {
            display: block;
            background: linear-gradient(135deg, var(--gold-bright), var(--gold-lt), #d4900a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-sub {
            color: var(--text-muted);
            max-width: 580px;
            margin: 0 auto 52px;
            font-size: 16px;
            line-height: 1.78;
        }

        .hero-stats {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0;
            margin-bottom: 0;
        }

        .stat {
            padding: 0 36px;
            text-align: center;
            position: relative;
        }

        .stat:not(:last-child)::before {
            content: '';
            position: absolute;
            top: 20%;
            left: 0;
            bottom: 20%;
            width: 1px;
            background: var(--wire-h);
        }

        html[dir="ltr"] .stat:not(:last-child)::before {
            left: auto;
            right: 0;
        }

        .stat-num {
            font-size: 30px;
            font-weight: 900;
            color: var(--gold-bright);
            line-height: 1.1;
            display: block;
        }

        .stat-lbl {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 5px;
            display: block;
        }

        /* =============================================
   INDUSTRY SELECTOR
============================================= */
        .industry-wrap {
            background: var(--abyss);
            padding: 60px 5% 72px;
        }

        .sec-eyebrow {
            text-align: center;
            font-size: 11px;
            font-weight: 800;
            color: var(--gold);
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .sec-h2 {
            text-align: center;
            font-size: clamp(20px, 3vw, 30px);
            font-weight: 900;
            margin-bottom: 8px;
        }

        .sec-sub {
            text-align: center;
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 36px;
        }

        .industry-flex {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            max-width: 960px;
            margin: 0 auto;
        }

        .ind-btn {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: rgba(255, 255, 255, .03);
            border: 1px solid var(--wire-h);
            border-radius: 999px;
            padding: 11px 20px;
            cursor: pointer;
            transition: var(--fast);
            font-family: var(--font);
            font-size: 14px;
            font-weight: 600;
            color: var(--text-muted);
            white-space: nowrap;
            user-select: none;
        }

        .ind-btn:hover {
            background: var(--gold-glow);
            border-color: var(--gold-border);
            color: var(--text);
            transform: translateY(-2px);
        }

        .ind-btn.on {
            background: linear-gradient(135deg, rgba(200, 164, 40, .18), rgba(200, 164, 40, .08));
            border-color: var(--gold);
            color: var(--gold-bright);
            box-shadow: 0 8px 28px rgba(200, 164, 40, .18);
        }

        .ind-icon {
            font-size: 17px;
        }

        /* =============================================
   PAGE GRID
============================================= */
        .page-wrap {
            max-width: 1380px;
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 1fr 368px;
            gap: 52px;
            align-items: start;
            padding-bottom: 140px;
        }

        @media(max-width:1080px) {
            .page-wrap {
                grid-template-columns: 1fr;
                padding-bottom: 220px;
            }
        }

        /* =============================================
   SECTION HEADERS
============================================= */
        .sec-label {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 24px;
        }

        .sec-label-icon {
            width: 42px;
            height: 42px;
            flex-shrink: 0;
            background: var(--gold-glow);
            border: 1px solid var(--gold-border);
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sec-label-icon svg {
            width: 20px;
            height: 20px;
            fill: var(--gold);
        }

        .sec-label-text h2 {
            font-size: 18px;
            font-weight: 900;
            color: var(--gold-bright);
        }

        .sec-label-text p {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 3px;
        }

        .builder-block {
            margin-bottom: 60px;
        }

        .builder-block:last-child {
            margin-bottom: 0;
        }

        /* =============================================
   PACKAGE CARDS
============================================= */
        .pkg-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
            gap: 16px;
        }

        @media(max-width:768px) {
            .pkg-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 12px;
            }
        }

        @media(max-width:480px) {
            .pkg-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
        }

        .pkg-card {
            background: var(--bg-2);
            border: 1px solid var(--wire-h);
            border-radius: var(--radius-lg);
            padding: 20px 18px;
            cursor: pointer;
            transition: var(--mid);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        .pkg-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(145deg, transparent, rgba(200, 164, 40, .04));
            opacity: 0;
            transition: var(--mid);
        }

        .pkg-card:hover {
            border-color: var(--gold-border-h);
            transform: translateY(-5px);
            box-shadow: var(--sh-hover);
        }

        .pkg-card:hover::after {
            opacity: 1;
        }

        .pkg-card.on {
            border-color: var(--gold);
            background: linear-gradient(145deg, var(--bg-2), rgba(200, 164, 40, .07));
            box-shadow: var(--sh-gold);
        }

        .pkg-card.on .pkg-on-badge {
            display: inline-flex;
        }

        .pkg-on-badge {
            display: none;
            align-items: center;
            gap: 5px;
            font-size: 10px;
            font-weight: 800;
            color: var(--gold);
            margin-top: 8px;
            padding: 4px 10px;
            border-radius: 6px;
            background: rgba(200, 164, 40, .1);
            border: 1px solid rgba(200, 164, 40, .2);
        }

        .pkg-on-badge svg {
            width: 12px;
            height: 12px;
            fill: var(--gold);
        }

        .pkg-card.dim {
            opacity: .3;
            filter: grayscale(60%);
            pointer-events: none;
            transform: none;
        }

        .pkg-badge {
            position: absolute;
            top: 13px;
            right: 13px;
            font-size: 10px;
            font-weight: 800;
            padding: 3px 10px;
            border-radius: 999px;
            background: rgba(245, 158, 11, .15);
            color: #fbbf24;
            border: 1px solid rgba(245, 158, 11, .3);
        }

        html[dir="ltr"] .pkg-badge {
            right: auto;
            left: 13px;
        }

        .pkg-emoji {
            font-size: 34px;
            margin-bottom: 10px;
            display: block;
            line-height: 1;
        }

        .pkg-name {
            font-size: 15px;
            font-weight: 800;
            color: var(--gold-bright);
            margin-bottom: 5px;
        }

        .pkg-desc {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.62;
            flex: 1;
            margin-bottom: 8px;
        }

        /* Level Picker Overlay */
        .lvl-picker-ov {
            position: fixed;
            inset: 0;
            background: rgba(6, 12, 24, .85);
            backdrop-filter: blur(12px);
            z-index: 950;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .lvl-picker-ov.open {
            display: flex;
        }

        .lvl-picker-box {
            background: var(--bg-2);
            border: 1px solid var(--gold-border);
            border-radius: var(--radius-xl);
            width: 100%;
            max-width: 440px;
            padding: 32px 28px;
            position: relative;
            animation: popIn .32s cubic-bezier(.34, 1.56, .64, 1);
        }

        .lvl-picker-close {
            position: absolute;
            top: 14px;
            left: 14px;
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, .06);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--fast);
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        html[dir="ltr"] .lvl-picker-close {
            left: auto;
            right: 14px;
        }

        .lvl-picker-close:hover {
            background: rgba(255, 255, 255, .12);
        }

        .lvl-picker-close svg {
            width: 18px;
            height: 18px;
            fill: var(--text-muted);
        }

        .lvl-picker-header {
            text-align: center;
            margin-bottom: 24px;
        }

        .lvl-picker-emoji {
            font-size: 42px;
            display: block;
            margin-bottom: 10px;
        }

        .lvl-picker-name {
            font-size: 20px;
            font-weight: 900;
            color: var(--gold-bright);
            margin-bottom: 6px;
        }

        .lvl-picker-sub {
            font-size: 13px;
            color: var(--text-muted);
        }

        .lvl-picker-options {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .lvl-pick-btn {
            display: flex;
            align-items: center;
            gap: 14px;
            width: 100%;
            padding: 16px 18px;
            border: 2px solid;
            border-radius: var(--radius);
            background: transparent;
            cursor: pointer;
            transition: var(--mid);
            font-family: var(--font);
            text-align: right;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            min-height: 60px;
        }

        html[dir="ltr"] .lvl-pick-btn {
            text-align: left;
        }

        .lvl-pick-btn[data-l="ignite"] {
            border-color: rgba(59, 130, 246, .3);
        }

        .lvl-pick-btn[data-l="ignite"]:hover,
        .lvl-pick-btn[data-l="ignite"]:active {
            background: rgba(59, 130, 246, .1);
            border-color: #3b82f6;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(59, 130, 246, .2);
        }

        .lvl-pick-btn[data-l="accelerate"] {
            border-color: rgba(245, 158, 11, .3);
        }

        .lvl-pick-btn[data-l="accelerate"]:hover,
        .lvl-pick-btn[data-l="accelerate"]:active {
            background: rgba(245, 158, 11, .1);
            border-color: #f59e0b;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245, 158, 11, .2);
        }

        .lvl-pick-btn[data-l="dominate"] {
            border-color: rgba(239, 68, 68, .3);
        }

        .lvl-pick-btn[data-l="dominate"]:hover,
        .lvl-pick-btn[data-l="dominate"]:active {
            background: rgba(239, 68, 68, .1);
            border-color: #ef4444;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(239, 68, 68, .2);
        }

        .lvl-pick-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 20px;
        }

        .lvl-pick-btn[data-l="ignite"] .lvl-pick-icon {
            background: rgba(59, 130, 246, .15);
        }

        .lvl-pick-btn[data-l="accelerate"] .lvl-pick-icon {
            background: rgba(245, 158, 11, .15);
        }

        .lvl-pick-btn[data-l="dominate"] .lvl-pick-icon {
            background: rgba(239, 68, 68, .15);
        }

        .lvl-pick-info {
            flex: 1;
            min-width: 0;
        }

        .lvl-pick-name {
            font-size: 15px;
            font-weight: 800;
            margin-bottom: 3px;
        }

        .lvl-pick-btn[data-l="ignite"] .lvl-pick-name {
            color: #93c5fd;
        }

        .lvl-pick-btn[data-l="accelerate"] .lvl-pick-name {
            color: #fcd34d;
        }

        .lvl-pick-btn[data-l="dominate"] .lvl-pick-name {
            color: #fca5a5;
        }

        .lvl-pick-desc {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .lvl-pick-arrow {
            width: 20px;
            height: 20px;
            fill: var(--text-dim);
            flex-shrink: 0;
            transition: var(--fast);
        }

        html[dir="rtl"] .lvl-pick-arrow {
            transform: rotate(180deg);
        }

        .lvl-pick-btn:hover .lvl-pick-arrow {
            fill: var(--text);
        }

        @media(max-width:480px) {
            .lvl-picker-box {
                padding: 24px 16px;
            }

            .lvl-pick-btn {
                padding: 14px 14px;
                gap: 10px;
            }

            .lvl-pick-icon {
                width: 36px;
                height: 36px;
            }

            .lvl-pick-name {
                font-size: 14px;
            }
        }

        .pkg-lvls {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 6px;
        }

        .plvl {
            padding: 10px 3px;
            font-size: 11px;
            font-weight: 800;
            border-radius: 7px;
            text-align: center;
            cursor: pointer;
            user-select: none;
            border: 1px solid var(--wire-h);
            background: rgba(0, 0, 0, .22);
            color: var(--text-muted);
            transition: var(--fast);
            font-family: var(--font);
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            min-height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .plvl:hover {
            border-color: var(--gold-border);
            color: var(--text);
        }

        .plvl[data-lvl="ignite"].on {
            background: rgba(59, 130, 246, .2);
            border-color: #3b82f6;
            color: #93c5fd;
        }

        .plvl[data-lvl="accelerate"].on {
            background: rgba(245, 158, 11, .2);
            border-color: #f59e0b;
            color: #fcd34d;
        }

        .plvl[data-lvl="dominate"].on {
            background: rgba(239, 68, 68, .2);
            border-color: #ef4444;
            color: #fca5a5;
        }

        /* =============================================
   GROWTH SYSTEM
============================================= */
        .growth-card {
            background: linear-gradient(145deg, var(--bg-3), rgba(200, 164, 40, .04));
            border: 2px solid rgba(200, 164, 40, .22);
            border-radius: var(--radius-xl);
            padding: 32px;
            cursor: pointer;
            transition: var(--mid);
            position: relative;
            overflow: hidden;
        }

        .growth-card::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 380px;
            height: 380px;
            background: radial-gradient(ellipse, rgba(200, 164, 40, .07) 0%, transparent 65%);
            pointer-events: none;
        }

        .growth-card:hover {
            border-color: rgba(200, 164, 40, .4);
            box-shadow: var(--sh-glow);
        }

        .growth-card.on {
            border-color: var(--gold);
            background: linear-gradient(145deg, var(--bg-3), rgba(200, 164, 40, .09));
            box-shadow: var(--sh-gold);
        }

        .growth-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 26px;
            position: relative;
        }

        .growth-chip {
            flex-shrink: 0;
            background: linear-gradient(135deg, var(--gold-bright), var(--gold));
            color: var(--abyss);
            font-size: 11px;
            font-weight: 900;
            padding: 6px 16px;
            border-radius: 999px;
            letter-spacing: .5px;
        }

        .growth-title {
            font-size: 21px;
            font-weight: 900;
            color: var(--gold-bright);
            margin-bottom: 8px;
        }

        .growth-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.72;
        }

        .growth-stages {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
            gap: 12px;
            pointer-events: none;
        }

        @media(max-width:768px) {
            .growth-stages {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width:400px) {
            .growth-stages {
                grid-template-columns: 1fr;
            }
        }

        .g-stage {
            background: rgba(255, 255, 255, .028);
            border: 1px solid var(--wire-h);
            border-radius: var(--radius);
            padding: 14px;
        }

        .g-num {
            font-size: 10px;
            font-weight: 800;
            color: var(--gold);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .g-title {
            font-size: 14px;
            font-weight: 800;
            margin-bottom: 4px;
        }

        .g-desc {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.52;
        }

        /* =============================================
   LEVELS LEGEND
============================================= */
        .level-legend {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 28px;
        }

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

        .lvl-card {
            border-radius: var(--radius);
            padding: 16px;
            border: 1px solid;
        }

        .lvl-card[data-l="ignite"] {
            border-color: rgba(59, 130, 246, .3);
            background: rgba(59, 130, 246, .06);
        }

        .lvl-card[data-l="accelerate"] {
            border-color: rgba(245, 158, 11, .3);
            background: rgba(245, 158, 11, .06);
        }

        .lvl-card[data-l="dominate"] {
            border-color: rgba(239, 68, 68, .3);
            background: rgba(239, 68, 68, .06);
        }

        .lvl-name {
            font-size: 15px;
            font-weight: 900;
            margin-bottom: 6px;
        }

        [data-l="ignite"] .lvl-name {
            color: #93c5fd;
        }

        [data-l="accelerate"].lvl-name {
            color: #fcd34d;
        }

        [data-l="dominate"] .lvl-name {
            color: #fca5a5;
        }

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

        /* =============================================
   SERVICE SEARCH
============================================= */
        .search-wrap {
            position: relative;
            margin-bottom: 20px;
        }

        .search-icon {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 16px;
            width: 20px;
            height: 20px;
            fill: var(--text-dim);
            pointer-events: none;
        }

        html[dir="rtl"] .search-icon {
            left: auto;
            right: 16px;
        }

        .search-inp {
            width: 100%;
            background: var(--bg-2);
            border: 1px solid var(--wire-h);
            border-radius: var(--radius);
            color: var(--text);
            font-family: var(--font);
            font-size: 15px;
            padding: 14px 20px 14px 48px;
            transition: var(--fast);
        }

        html[dir="rtl"] .search-inp {
            padding: 14px 48px 14px 20px;
        }

        .search-inp::placeholder {
            color: var(--text-dim);
        }

        .search-inp:focus {
            outline: none;
            border-color: var(--gold-border-h);
            box-shadow: 0 0 0 3px var(--gold-glow);
        }

        /* =============================================
   ACCORDION MODULES
============================================= */
        .mod-block {
            background: rgba(255, 255, 255, .018);
            border: 1px solid var(--wire);
            border-radius: var(--radius-lg);
            margin-bottom: 14px;
            overflow: hidden;
            transition: var(--fast);
        }

        .mod-block.sel {
            border-color: rgba(200, 164, 40, .22);
            background: rgba(200, 164, 40, .02);
        }

        .mod-block.open {
            border-color: rgba(200, 164, 40, .18);
        }

        .mod-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 20px 22px;
            cursor: pointer;
            user-select: none;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        .mod-head-left {
            display: flex;
            align-items: center;
            gap: 14px;
            flex: 1;
            min-width: 0;
        }

        .mod-icon-wrap {
            width: 42px;
            height: 42px;
            flex-shrink: 0;
            border-radius: 11px;
            background: rgba(255, 255, 255, .04);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--fast);
        }

        .mod-icon-wrap svg {
            width: 21px;
            height: 21px;
            fill: var(--text-muted);
            transition: var(--fast);
        }

        .mod-block.open .mod-icon-wrap,
        .mod-block.sel .mod-icon-wrap {
            background: var(--gold-glow);
        }

        .mod-block.open .mod-icon-wrap svg,
        .mod-block.sel .mod-icon-wrap svg {
            fill: var(--gold);
        }

        .mod-info {
            flex: 1;
            min-width: 0;
        }

        .mod-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
            transition: var(--fast);
        }

        .mod-block.open .mod-title,
        .mod-block.sel .mod-title {
            color: var(--gold-bright);
        }

        .mod-count {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 3px;
        }

        .mod-count.has {
            color: var(--gold);
            font-weight: 700;
        }

        .mod-chev {
            width: 20px;
            height: 20px;
            fill: var(--text-dim);
            transition: var(--fast);
            flex-shrink: 0;
        }

        .mod-block.open .mod-chev {
            transform: rotate(180deg);
            fill: var(--gold);
        }

        .mod-body {
            display: none;
            flex-direction: column;
            gap: 10px;
            padding: 0 22px 22px;
        }

        .mod-block.open .mod-body {
            display: flex;
            animation: slideIn .28s var(--ease);
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* =============================================
   SERVICE ITEMS
============================================= */
        .srv-item {
            background: var(--bg-3);
            border: 1px solid var(--wire-h);
            border-radius: var(--radius);
            transition: var(--fast);
            overflow: hidden;
        }

        .srv-item:hover {
            border-color: var(--gold-border);
        }

        .srv-item.on {
            border-color: var(--gold);
            background: linear-gradient(135deg, var(--bg-3), rgba(200, 164, 40, .07));
        }

        .srv-item.hide {
            display: none;
        }

        .srv-head {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px 16px;
            cursor: pointer;
            user-select: none;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            min-height: 48px;
        }

        .chk {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
            border: 2px solid var(--text-dim);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--fast);
        }

        .srv-item.on .chk {
            background: var(--gold);
            border-color: var(--gold);
        }

        .chk svg {
            width: 13px;
            height: 13px;
            fill: var(--abyss);
            opacity: 0;
            transform: scale(.4);
            transition: var(--fast);
        }

        .srv-item.on .chk svg {
            opacity: 1;
            transform: scale(1);
        }

        .srv-name {
            font-size: 14px;
            font-weight: 600;
            flex: 1;
            line-height: 1.4;
        }

        .srv-preview-tag {
            font-size: 10px;
            font-weight: 800;
            padding: 2px 9px;
            border-radius: 5px;
            white-space: nowrap;
            background: rgba(139, 92, 246, .15);
            color: #c4b5fd;
            border: 1px solid rgba(139, 92, 246, .25);
        }

        .srv-detail {
            display: none;
            padding: 0 16px 16px;
        }

        .srv-item.on .srv-detail {
            display: block;
            animation: slideIn .24s var(--ease);
        }

        /* Level Tabs inside service */
        .lvl-tabs {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            margin-bottom: 11px;
        }

        .lvl-tab {
            padding: 11px 5px;
            font-size: 12px;
            font-weight: 800;
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            border: 1px solid var(--wire-h);
            background: rgba(0, 0, 0, .22);
            color: var(--text-muted);
            transition: var(--fast);
            font-family: var(--font);
            user-select: none;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            min-height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lvl-tab:hover {
            border-color: var(--gold-border);
            color: var(--text);
        }

        .lvl-tab[data-l="ignite"].on {
            background: rgba(59, 130, 246, .2);
            border-color: #3b82f6;
            color: #93c5fd;
        }

        .lvl-tab[data-l="accelerate"].on {
            background: rgba(245, 158, 11, .2);
            border-color: #f59e0b;
            color: #fcd34d;
        }

        .lvl-tab[data-l="dominate"].on {
            background: rgba(239, 68, 68, .2);
            border-color: #ef4444;
            color: #fca5a5;
        }

        .lvl-desc-box {
            display: none;
            background: rgba(200, 164, 40, .07);
            border: 1px solid rgba(200, 164, 40, .18);
            border-radius: 8px;
            padding: 10px 14px;
            font-size: 12px;
            color: var(--gold-bright);
            line-height: 1.65;
            margin-bottom: 12px;
        }

        .lvl-desc-box.vis {
            display: block;
            animation: fadeIn .22s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0
            }

            to {
                opacity: 1
            }
        }

        .srv-controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
        }

        .qty-wrap {
            display: flex;
            align-items: center;
            gap: 0;
            background: rgba(0, 0, 0, .3);
            border: 1px solid var(--wire-h);
            border-radius: 8px;
            overflow: hidden;
        }

        .qty-btn {
            width: 40px;
            height: 40px;
            border: none;
            background: transparent;
            color: var(--text-muted);
            cursor: pointer;
            font-size: 17px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--fast);
            font-family: monospace;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        .qty-btn:hover {
            background: var(--gold-glow);
            color: var(--gold);
        }

        .qty-val {
            width: 34px;
            text-align: center;
            font-size: 14px;
            font-weight: 800;
            border-left: 1px solid var(--wire-h);
            border-right: 1px solid var(--wire-h);
        }

        .prev-toggle {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            font-size: 12px;
            font-weight: 700;
            color: #c4b5fd;
        }

        .prev-toggle input {
            display: none;
        }

        .track {
            width: 40px;
            height: 22px;
            background: rgba(255, 255, 255, .08);
            border-radius: 20px;
            position: relative;
            transition: .28s;
            flex-shrink: 0;
        }

        .track::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            width: 16px;
            height: 16px;
            background: var(--text-muted);
            border-radius: 50%;
            transition: .28s;
        }

        html[dir="rtl"] .track::after {
            left: auto;
            right: 3px;
        }

        .prev-toggle input:checked+.track {
            background: #7c3aed;
        }

        .prev-toggle input:checked+.track::after {
            transform: translateX(18px);
            background: #fff;
        }

        html[dir="rtl"] .prev-toggle input:checked+.track::after {
            transform: translateX(-18px);
        }

        /* =============================================
   BOTTOM CONFIRM BUTTON (Builder)
============================================= */
        .bottom-bar {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }

        /* =============================================
   BUTTONS
============================================= */
        .btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 14px 20px;
            border: none;
            border-radius: var(--radius);
            font-family: var(--font);
            font-size: 15px;
            font-weight: 800;
            cursor: pointer;
            transition: var(--fast);
            text-align: center;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            min-height: 48px;
        }

        .btn-gold {
            background: linear-gradient(135deg, var(--gold-bright), var(--gold));
            color: var(--abyss);
        }

        .btn-gold:hover {
            box-shadow: var(--sh-gold);
            transform: translateY(-2px);
        }

        .btn-gold:disabled {
            background: rgba(255, 255, 255, .08);
            color: var(--text-dim);
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .btn-danger {
            background: transparent;
            color: #f87171;
            border: 1px solid rgba(248, 113, 113, .22);
            font-size: 13px;
            padding: 10px;
            margin-top: 10px;
        }

        .btn-danger:hover {
            background: rgba(248, 113, 113, .08);
        }

        .btn-wa {
            background: linear-gradient(135deg, #25d366, #1da851);
            color: #fff;
        }

        .btn-wa:hover {
            box-shadow: 0 8px 28px rgba(37, 211, 102, .38);
            transform: translateY(-2px);
        }

        .btn-wa svg {
            width: 20px;
            height: 20px;
            fill: #fff;
        }

        /* =============================================
   SIDEBAR / SUMMARY
============================================= */
        .sidebar-sticky {
            position: sticky;
            top: 88px;
        }

        .sum-card {
            background: var(--bg-2);
            border: 1px solid var(--gold-border);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--sh-card);
        }

        .sum-hd {
            padding: 24px 24px 20px;
            background: linear-gradient(145deg, var(--bg-2), rgba(200, 164, 40, .03));
            border-bottom: 1px solid var(--wire);
        }

        .sum-hd-title {
            font-size: 17px;
            font-weight: 900;
            color: var(--gold-bright);
            margin-bottom: 18px;
        }

        /* Progress ring */
        .prog-row {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .ring-wrap {
            position: relative;
            width: 66px;
            height: 66px;
            flex-shrink: 0;
        }

        .ring-wrap svg {
            transform: rotate(-90deg);
        }

        .ring-bg {
            fill: none;
            stroke: rgba(255, 255, 255, .06);
            stroke-width: 4.5;
        }

        .ring-fill {
            fill: none;
            stroke: var(--gold);
            stroke-width: 4.5;
            stroke-linecap: round;
            stroke-dasharray: 164;
            stroke-dashoffset: 164;
            transition: stroke-dashoffset .8s cubic-bezier(.4, 0, .2, 1);
        }

        .ring-pct {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 900;
            color: var(--gold-bright);
        }

        .prog-info h4 {
            font-size: 14px;
            font-weight: 700;
        }

        .prog-info p {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 3px;
        }

        .tier-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(0, 0, 0, .2);
            border-radius: 9px;
            padding: 10px 16px;
            margin-top: 16px;
        }

        .tier-lbl {
            font-size: 12px;
            color: var(--text-muted);
        }

        .tier-badge {
            font-size: 12px;
            font-weight: 800;
            padding: 4px 13px;
            border-radius: 6px;
        }

        .t0 {
            background: rgba(255, 255, 255, .06);
            color: var(--text-dim);
        }

        .t1 {
            background: var(--ignite-bg);
            color: #93c5fd;
        }

        .t2 {
            background: var(--accel-bg);
            color: #fcd34d;
        }

        .t3 {
            background: var(--dom-bg);
            color: #fca5a5;
        }

        .sum-body {
            padding: 18px 22px;
            max-height: 42vh;
            overflow-y: auto;
        }

        .sum-body::-webkit-scrollbar {
            width: 3px;
        }

        .sum-body::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, .1);
            border-radius: 2px;
        }

        .sum-empty {
            text-align: center;
            padding: 28px 0;
            color: var(--text-dim);
            font-size: 13px;
        }

        .sum-empty svg {
            width: 38px;
            height: 38px;
            fill: var(--text-dim);
            margin: 0 auto 12px;
            display: block;
        }

        .sum-row {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px dashed rgba(255, 255, 255, .04);
        }

        .sum-row:last-child {
            border-bottom: none;
        }

        .sum-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--gold);
            flex-shrink: 0;
            margin-top: 5px;
        }

        .sum-item-n {
            font-size: 13px;
            font-weight: 600;
            color: var(--gold-bright);
            line-height: 1.4;
        }

        .sum-tags {
            display: flex;
            gap: 5px;
            flex-wrap: wrap;
            margin-top: 4px;
        }

        .stag {
            font-size: 10px;
            font-weight: 800;
            padding: 2px 8px;
            border-radius: 5px;
        }

        .stag.i {
            background: rgba(59, 130, 246, .15);
            color: #93c5fd;
        }

        .stag.a {
            background: rgba(245, 158, 11, .15);
            color: #fcd34d;
        }

        .stag.d {
            background: rgba(239, 68, 68, .15);
            color: #fca5a5;
        }

        .stag.q {
            background: rgba(200, 164, 40, .15);
            color: var(--gold-bright);
        }

        .stag.p {
            background: rgba(139, 92, 246, .15);
            color: #c4b5fd;
        }

        .sum-ft {
            padding: 16px 22px 24px;
            border-top: 1px solid var(--wire);
        }

        .perks {
            margin-top: 20px;
            padding-top: 16px;
            border-top: 1px solid var(--wire);
        }

        .perk {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .perk svg {
            width: 13px;
            height: 13px;
            fill: var(--gold);
            flex-shrink: 0;
        }

        /* Mobile sidebar becomes fixed bottom sheet */
        @media(max-width:1080px) {
            .sidebar-sticky {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                top: auto;
                z-index: 300;
            }

            .sum-card {
                border-radius: 20px 20px 0 0;
                border-bottom: none;
                border-left: none;
                border-right: none;
            }

            .sum-hd {
                cursor: pointer;
                padding: 10px 22px 14px;
                position: relative;
            }

            .sum-hd::before {
                content: '';
                position: absolute;
                top: 8px;
                left: 50%;
                transform: translateX(-50%);
                width: 38px;
                height: 4px;
                background: rgba(255, 255, 255, .14);
                border-radius: 2px;
            }

            .sum-body {
                display: none;
            }

            .sum-body.open {
                display: block;
                max-height: 48vh;
            }

            .btn-danger {
                display: none;
            }

            .perks {
                display: none;
            }

            .prog-row {
                display: none;
            }

            .tier-bar {
                margin-top: 0;
            }

            .sum-hd-title {
                margin-bottom: 8px;
            }
        }

        /* =============================================
   MODAL
============================================= */
        .modal-ov {
            position: fixed;
            inset: 0;
            background: rgba(6, 12, 24, .88);
            backdrop-filter: blur(10px);
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-ov.open {
            display: flex;
        }

        .modal-box {
            background: var(--bg-2);
            border: 1px solid var(--gold-border);
            border-radius: var(--radius-xl);
            width: 100%;
            max-width: 540px;
            padding: 38px;
            position: relative;
            animation: popIn .32s cubic-bezier(.34, 1.56, .64, 1);
            max-height: 92vh;
            overflow-y: auto;
        }

        @keyframes popIn {
            from {
                opacity: 0;
                transform: translateY(28px) scale(.95);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .modal-close {
            position: absolute;
            top: 18px;
            left: 18px;
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, .06);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--fast);
        }

        html[dir="ltr"] .modal-close {
            left: auto;
            right: 18px;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, .12);
        }

        .modal-close svg {
            width: 18px;
            height: 18px;
            fill: var(--text-muted);
        }

        .modal-title {
            font-size: 23px;
            font-weight: 900;
            color: var(--gold-bright);
            margin-bottom: 8px;
        }

        .modal-sub {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 28px;
            line-height: 1.68;
        }

        .fg {
            margin-bottom: 20px;
        }

        .fg label {
            display: block;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .fi {
            width: 100%;
            background: rgba(0, 0, 0, .3);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: var(--radius);
            padding: 14px 16px;
            color: var(--text);
            font-family: var(--font);
            font-size: 15px;
            transition: var(--fast);
        }

        .fi:focus {
            outline: none;
            border-color: var(--gold-border-h);
            box-shadow: 0 0 0 3px var(--gold-glow);
        }

        .fi::placeholder {
            color: var(--text-dim);
        }

        .fi.err {
            border-color: #ef4444;
        }

        .order-preview {
            background: rgba(0, 0, 0, .22);
            border: 1px solid var(--wire-h);
            border-radius: var(--radius);
            padding: 14px 16px;
            max-height: 190px;
            overflow-y: auto;
            margin-bottom: 20px;
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        .op-row {
            display: flex;
            gap: 8px;
            margin-bottom: 6px;
        }

        .op-row:last-child {
            margin-bottom: 0;
        }

        .op-dot {
            color: var(--gold);
            flex-shrink: 0;
        }

        .success-wrap {
            text-align: center;
            display: none;
            padding: 16px 0;
        }

        .success-wrap.vis {
            display: block;
            animation: fadeIn .4s ease;
        }

        .suc-icon {
            width: 74px;
            height: 74px;
            border-radius: 50%;
            background: rgba(16, 185, 129, .12);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 22px;
        }

        .suc-icon svg {
            width: 38px;
            height: 38px;
            fill: #34d399;
        }

        .suc-title {
            font-size: 23px;
            font-weight: 900;
            color: var(--gold-bright);
            margin-bottom: 10px;
        }

        .suc-text {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.72;
            margin-bottom: 30px;
        }

        /* =============================================
   PULSE ANIMATION (when package is selected)
============================================= */
        @keyframes cardPulse {
            0% {
                transform: scale(1);
                box-shadow: var(--sh-card);
            }

            45% {
                transform: scale(1.025);
                box-shadow: 0 0 50px rgba(200, 164, 40, .35);
            }

            100% {
                transform: scale(1);
                box-shadow: var(--sh-gold);
            }
        }

        .pulsing {
            animation: cardPulse .7s var(--ease);
        }

        /* =============================================
   UTILITIES
============================================= */
        .hidden {
            display: none !important;
        }

        /* Tablet */
        @media(max-width:1080px) and (min-width:641px) {
            .page-wrap {
                padding: 0 20px;
                padding-bottom: 200px;
            }

            .hero {
                padding: 72px 5% 60px;
            }

            .industry-flex {
                gap: 8px;
            }
        }

        /* Mobile */
        @media(max-width:640px) {
            .hero {
                padding: 64px 16px 48px;
            }

            .hero-h1 {
                font-size: clamp(28px, 7vw, 40px);
            }

            .hero-sub {
                font-size: 14px;
                margin-bottom: 36px;
            }

            .hero-stats {
                gap: 0;
                flex-wrap: wrap;
                justify-content: center;
            }

            .stat {
                padding: 0 16px;
            }

            .stat-num {
                font-size: 22px;
            }

            .stat-lbl {
                font-size: 11px;
            }

            .industry-wrap {
                padding: 40px 16px 48px;
            }

            .industry-flex {
                gap: 8px;
            }

            .ind-btn {
                padding: 9px 14px;
                font-size: 13px;
            }

            .page-wrap {
                padding: 0 12px;
                padding-bottom: 200px;
                gap: 32px;
            }

            .sec-label {
                gap: 10px;
                margin-bottom: 18px;
            }

            .sec-label-icon {
                width: 36px;
                height: 36px;
            }

            .sec-label-text h2 {
                font-size: 16px;
            }

            .sec-label-text p {
                font-size: 12px;
            }

            .growth-card {
                padding: 20px 16px;
            }

            .growth-title {
                font-size: 18px;
            }

            .growth-desc {
                font-size: 13px;
            }

            .growth-top {
                flex-direction: column;
                gap: 12px;
            }

            .mod-head {
                padding: 16px 14px;
                gap: 10px;
            }

            .mod-icon-wrap {
                width: 36px;
                height: 36px;
            }

            .mod-title {
                font-size: 14px;
            }

            .mod-body {
                padding: 0 14px 14px;
            }

            .srv-head {
                padding: 12px;
                gap: 10px;
            }

            .srv-name {
                font-size: 13px;
            }

            .lvl-tabs {
                gap: 6px;
            }

            .lvl-tab {
                font-size: 11px;
                padding: 9px 4px;
            }

            .search-inp {
                font-size: 14px;
                padding: 12px 16px 12px 44px;
            }

            html[dir="rtl"] .search-inp {
                padding: 12px 44px 12px 16px;
            }

            .level-legend {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .modal-box {
                padding: 24px 16px;
                max-width: 100%;
                margin: 0 8px;
            }

            .modal-title {
                font-size: 20px;
            }

            .modal-sub {
                font-size: 13px;
            }

            .fi {
                padding: 12px 14px;
                font-size: 14px;
            }

            .hero-badge {
                font-size: 11px;
                padding: 6px 16px;
            }

            .nav {
                height: 56px;
                padding: 0 4%;
            }

            .nav-logo img {
                height: 30px;
            }

            .nav-back span {
                display: none;
            }

            .lang-btn {
                top: 14px;
                padding: 6px 14px;
                font-size: 11px;
            }

            html[dir="rtl"] .lang-btn {
                right: 14px;
            }

            .wa-btn {
                width: 48px;
                height: 48px;
                bottom: 200px;
            }

            html[dir="rtl"] .wa-btn {
                right: 16px;
            }

            .wa-btn svg {
                width: 24px;
                height: 24px;
            }

            .pkg-card {
                padding: 14px 12px;
            }

            .pkg-emoji {
                font-size: 28px;
            }

            .pkg-name {
                font-size: 13px;
            }

            .pkg-desc {
                font-size: 11px;
                margin-bottom: 12px;
            }

            .plvl {
                padding: 8px 2px;
                font-size: 10px;
                min-height: 34px;
            }

            .sec-h2 {
                font-size: clamp(18px, 4.5vw, 26px);
            }

            .builder-block {
                margin-bottom: 40px;
            }
        }

        /* Very small screens */
        @media(max-width:360px) {
            .pkg-grid {
                grid-template-columns: 1fr;
            }

            .hero {
                padding: 56px 12px 40px;
            }

            .stat {
                padding: 0 12px;
            }
        }