        [x-cloak] {
            display: none !important;
        }

        :root {
            --primary: #55AD16;
            --primary-dark: #0A1726;
            --primary-light: #73C922;
            --primary-lighter: #F6FDEF;
            --accent: #FBBF24;
            --dark: #0A1726;
            --text: #374151;
            --text-light: #6B7280;
            --white: #FFFFFF;
            --gray-bg: #F9FAFB;
            --border: #E5E7EB;
            --gradient-hero: linear-gradient(180deg, #F6FDEF 0%, #FFFFFF 100%);
            --gradient-primary: linear-gradient(135deg, #55AD16 0%, #73C922 100%);
            --gradient-dark: linear-gradient(135deg, #0A1726 0%, #1E1B4B 100%);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Cairo', sans-serif;
            color: var(--text);
            -webkit-font-smoothing: antialiased;
        }

        /* ===== SCROLLBAR ===== */
        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: var(--primary-lighter);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(60px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-12px);
            }
        }

        @keyframes floatSlow {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-8px) rotate(2deg);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.05);
                opacity: 0.8;
            }
        }

        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3);
            }

            50% {
                transform: scale(1.08);
            }

            70% {
                transform: scale(0.95);
            }

            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes slideInScale {
            from {
                opacity: 0;
                transform: scale(0.85) translateY(30px);
            }

            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }

            100% {
                background-position: 200% 0;
            }
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        @keyframes dashDraw {
            to {
                stroke-dashoffset: 0;
            }
        }

        @keyframes dotPulse {

            0%,
            100% {
                r: 3;
                opacity: 0.6;
            }

            50% {
                r: 5;
                opacity: 1;
            }
        }

        @keyframes spinSlow {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes countUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes rocketLaunch {
            0% {
                transform: translateY(0) rotate(-45deg);
            }

            50% {
                transform: translateY(-15px) rotate(-45deg);
            }

            100% {
                transform: translateY(0) rotate(-45deg);
            }
        }

        /* Scroll-triggered animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 {
            transition-delay: 0.1s;
        }

        .reveal-delay-2 {
            transition-delay: 0.2s;
        }

        .reveal-delay-3 {
            transition-delay: 0.3s;
        }

        .reveal-delay-4 {
            transition-delay: 0.4s;
        }

        .reveal-delay-5 {
            transition-delay: 0.5s;
        }

        .reveal-delay-6 {
            transition-delay: 0.6s;
        }

        .reveal-delay-7 {
            transition-delay: 0.7s;
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.9) translateY(20px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-scale.visible {
            opacity: 1;
            transform: scale(1) translateY(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(60px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* ===== CONTAINER ===== */
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(108, 63, 181, 0.08);
            padding: 10px 0;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .navbar.scrolled {
            padding: 6px 0;
            box-shadow: 0 2px 30px rgba(108, 63, 181, 0.12);
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .nav-logo-icon {
            width: 38px;
            height: 38px;
            background: var(--gradient-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s;
        }

        .nav-logo:hover .nav-logo-icon {
            transform: rotate(-5deg) scale(1.05);
        }

        .nav-logo-icon svg {
            width: 22px;
            height: 22px;
            fill: white;
        }

        .nav-logo-text {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--dark);
        }

        .nav-logo-text span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 600;
            font-size: 0.9rem;
            transition: color 0.3s;
            position: relative;
            padding: 4px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            right: 0;
            width: 0;
            height: 2.5px;
            background: var(--primary);
            border-radius: 2px;
            transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta-btn {
            background: var(--gradient-primary);
            color: var(--white) !important;
            padding: 10px 28px !important;
            border-radius: 50px;
            font-weight: 700 !important;
            font-size: 0.88rem !important;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
            box-shadow: 0 4px 15px rgba(108, 63, 181, 0.3);
        }

        .nav-cta-btn::after {
            display: none !important;
        }

        .nav-cta-btn:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 6px 25px rgba(108, 63, 181, 0.4) !important;
            color: var(--white) !important;
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            border: none;
            background: none;
        }

        .mobile-toggle span {
            width: 24px;
            height: 2.5px;
            background: var(--dark);
            border-radius: 2px;
            transition: all 0.3s;
            transform-origin: center;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            padding: 130px 0 80px;
            background: var(--gradient-hero);
            position: relative;
            overflow: hidden;
        }

        .hero-bg-shapes {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .hero-bg-shapes .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.06;
        }

        .hero-bg-shapes .shape-1 {
            width: 500px;
            height: 500px;
            background: var(--primary);
            top: -200px;
            right: -100px;
            animation: float 12s ease-in-out infinite;
        }

        .hero-bg-shapes .shape-2 {
            width: 300px;
            height: 300px;
            background: var(--primary-light);
            bottom: -100px;
            left: -50px;
            animation: float 10s ease-in-out infinite 2s;
        }

        .hero-bg-shapes .shape-3 {
            width: 200px;
            height: 200px;
            background: var(--accent);
            top: 50%;
            left: 40%;
            animation: float 8s ease-in-out infinite 1s;
        }

        .hero-dots {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .hero-dot {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary-light);
            border-radius: 50%;
            opacity: 0.3;
        }

        .hero-dot:nth-child(1) {
            top: 15%;
            left: 8%;
            animation: dotPulse 3s ease-in-out infinite;
        }

        .hero-dot:nth-child(2) {
            top: 25%;
            left: 75%;
            animation: dotPulse 3s ease-in-out infinite 0.5s;
        }

        .hero-dot:nth-child(3) {
            top: 55%;
            left: 15%;
            animation: dotPulse 3s ease-in-out infinite 1s;
        }

        .hero-dot:nth-child(4) {
            top: 70%;
            left: 85%;
            animation: dotPulse 3s ease-in-out infinite 1.5s;
        }

        .hero-dot:nth-child(5) {
            top: 40%;
            left: 50%;
            animation: dotPulse 3s ease-in-out infinite 2s;
        }

        .hero-dot:nth-child(6) {
            top: 80%;
            left: 30%;
            animation: dotPulse 3s ease-in-out infinite 2.5s;
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            animation: fadeInRight 0.9s ease-out;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gradient-primary);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 20px;
            box-shadow: 0 4px 20px rgba(108, 63, 181, 0.3);
        }

        .hero-badge svg {
            width: 16px;
            height: 16px;
            fill: var(--yellow);
        }

        .hero-title {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--dark);
            line-height: 1.5;
            margin-bottom: 16px;
        }

        .hero-title .highlight {
            color: var(--primary);
            position: relative;
            display: inline-block;
        }

        .hero-title .highlight::after {
            content: '';
            position: absolute;
            bottom: 2px;
            right: 0;
            width: 100%;
            height: 10px;
            background: rgba(108, 63, 181, 0.12);
            border-radius: 4px;
            z-index: -1;
        }

        .hero-subtitle {
            font-size: 1rem;
            color: var(--text);
            line-height: 2;
            margin-bottom: 8px;
            padding-right: 0;
        }

        .hero-subtitle strong {
            color: var(--dark);
        }

        .hero-dual-box {
            background: var(--purple-bg);
            border-radius: 18px;
            padding: 24px;
            margin: 24px 0;
            border: 1px solid rgba(108, 63, 181, 0.1);
            transition: all 0.3s;
        }

        .hero-dual-box:hover {
            box-shadow: var(--shadow-md);
            border-color: rgba(108, 63, 181, 0.2);
        }

        .hero-dual-box h4 {
            font-size: 1rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 14px;
        }

        .dual-badges-row {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 12px;
        }

        .dual-badge {
            padding: 8px 22px;
            border-radius: 10px;
            font-weight: 800;
            font-size: 0.95rem;
            color: white;
        }

        .dual-badge.ali {
            background: var(--ali-orange);
        }

        .dual-badge.tajer {
            background: var(--orange-red);
        }

        .dual-plus {
            font-size: 1.6rem;
            font-weight: 900;
            color: var(--primary);
        }

        .dual-desc {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gradient-primary);
            color: var(--white);
            padding: 14px 36px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 6px 25px rgba(108, 63, 181, 0.35);
            border: none;
            cursor: pointer;
            font-family: 'Cairo', sans-serif;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 35px rgba(108, 63, 181, 0.45);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--white);
            color: var(--primary);
            padding: 14px 36px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            border: 2px solid var(--primary);
            cursor: pointer;
            font-family: 'Cairo', sans-serif;
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(108, 63, 181, 0.3);
        }

        .hero-visual {
            position: relative;
            animation: fadeInLeft 0.9s ease-out 0.2s both;
        }

        .laptop-mockup {
            position: relative;
            width: 100%;
            max-width: 620px;
            margin: 0 auto;
        }

        .laptop-screen {
            background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
            border-radius: 16px;
            padding: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .laptop-screen-inner {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            aspect-ratio: 16/10;
            position: relative;
        }

        .dashboard-mock {
            width: 100%;
            height: 100%;
            padding: 12px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .dash-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 6px 10px;
            background: var(--purple-bg);
            border-radius: 8px;
        }

        .dash-logo {
            font-size: 0.7rem;
            font-weight: 800;
            color: var(--dark);
        }

        .dash-logo span {
            color: var(--primary);
        }

        .dash-search {
            width: 40%;
            height: 18px;
            background: white;
            border-radius: 10px;
            border: 1px solid var(--border);
        }

        .dash-body {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 6px;
            flex: 1;
        }

        .dash-sidebar {
            background: var(--purple-bg);
            border-radius: 8px;
            padding: 8px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .dash-sidebar-item {
            height: 8px;
            background: rgba(108, 63, 181, 0.15);
            border-radius: 4px;
        }

        .dash-sidebar-item.active {
            background: var(--primary);
            opacity: 0.6;
        }

        .dash-main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto 1fr;
            gap: 6px;
        }

        .dash-cards-row {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 6px;
        }

        .dash-card {
            background: var(--purple-bg);
            border-radius: 6px;
            padding: 8px;
        }

        .dash-card.highlight {
            background: var(--gradient-primary);
        }

        .dash-card-title {
            font-size: 0.55rem;
            color: var(--text-light);
            margin-bottom: 4px;
        }

        .dash-card.highlight .dash-card-title {
            color: rgba(255, 255, 255, 0.8);
        }

        .dash-card-value {
            font-size: 0.85rem;
            font-weight: 900;
            color: var(--dark);
        }

        .dash-card.highlight .dash-card-value {
            color: white;
        }

        .dash-card-change {
            font-size: 0.5rem;
            color: #10B981;
            font-weight: 700;
        }

        .dash-chart-area {
            background: white;
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: 8px;
        }

        .dash-chart-title {
            font-size: 0.55rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 6px;
        }

        .dash-chart-svg {
            width: 100%;
            height: 60px;
        }

        .dash-pie-area {
            background: white;
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .dash-pie-title {
            font-size: 0.55rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 6px;
        }

        .dash-pie-svg {
            width: 60px;
            height: 60px;
        }

        .dash-pie-legend {
            display: flex;
            gap: 8px;
            margin-top: 4px;
        }

        .dash-pie-legend-item {
            font-size: 0.45rem;
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .dash-pie-legend-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
        }

        .laptop-base {
            width: 110%;
            height: 14px;
            background: linear-gradient(180deg, #d1d5db 0%, #9ca3af 100%);
            margin: 0 auto;
            border-radius: 0 0 12px 12px;
            position: relative;
            right: 5%;
        }

        .laptop-base::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 30%;
            height: 4px;
            background: #6b7280;
            border-radius: 0 0 6px 6px;
        }

        /* Floating badges on hero */
        .hero-float-badge {
            position: absolute;
            background: var(--white);
            border-radius: 14px;
            padding: 12px 18px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 10;
            border: 1px solid rgba(108, 63, 181, 0.08);
        }

        .hero-float-badge.sales {
            top: 20px;
            right: -10px;
            animation: float 4s ease-in-out infinite;
        }

        .hero-float-badge.orders {
            bottom: 50px;
            left: -20px;
            animation: float 5s ease-in-out infinite 1s;
        }

        .hero-float-badge.products {
            bottom: 0px;
            right: 10px;
            animation: float 4.5s ease-in-out infinite 0.5s;
        }

        .float-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .float-icon.purple {
            background: var(--purple-bg);
        }

        .float-icon.green {
            background: #ECFDF5;
        }

        .float-icon.orange {
            background: #FFF7ED;
        }

        .float-icon svg {
            width: 20px;
            height: 20px;
        }

        .float-info .float-label {
            font-size: 0.7rem;
            color: var(--text-light);
        }

        .float-info .float-value {
            font-size: 0.95rem;
            font-weight: 900;
            color: var(--dark);
        }

        .float-info .float-change {
            font-size: 0.65rem;
            color: #10B981;
            font-weight: 700;
        }

        /* ===== PAYMENT SECTION ===== */
        .payment-section {
            padding: 50px 0;
            background: var(--white);
        }

        .payment-banner {
            background: linear-gradient(135deg, var(--dark2) 0%, var(--primary) 50%, var(--accent) 100%);
            border-radius: var(--radius-md);
            padding: 32px 36px;
            position: relative;
            overflow: hidden;
        }

        .payment-banner::before {
            content: '';
            position: absolute;
            top: -60%;
            right: -10%;
            width: 350px;
            height: 350px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 50%;
        }

        .payment-banner::after {
            content: '';
            position: absolute;
            bottom: -40%;
            left: 10%;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
        }

        .payment-title {
            text-align: center;
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 24px;
            position: relative;
            z-index: 2;
        }

        .payment-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }

        .payment-cod-box {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 14px;
            padding: 14px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }

        .payment-cod-box:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }

        .payment-cod-icon {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .payment-cod-icon svg {
            width: 22px;
            height: 22px;
            fill: white;
        }

        .payment-cod-text {
            color: white;
        }

        .payment-cod-text .cod-label {
            font-size: 0.75rem;
            font-weight: 600;
            opacity: 0.9;
        }

        .payment-cod-text .cod-title {
            font-size: 0.95rem;
            font-weight: 800;
        }

        .payment-gateway {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            padding: 12px 18px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 0.85rem;
            color: white;
            transition: all 0.3s;
        }

        .payment-gateway:hover {
            background: rgba(255, 255, 255, 0.22);
            transform: translateY(-3px);
        }

        .payment-gateway svg {
            width: 24px;
            height: 24px;
        }

        .payment-extra-box {
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 14px;
            padding: 14px 22px;
            text-align: center;
            color: white;
            transition: all 0.3s;
        }

        .payment-extra-box:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }

        .payment-extra-box .extra-num {
            font-size: 1.5rem;
            font-weight: 900;
            line-height: 1.1;
        }

        .payment-extra-box .extra-label {
            font-size: 0.7rem;
            opacity: 0.85;
            margin-top: 2px;
        }

        /* ===== FEATURES SECTION ===== */
        .features-section {
            padding: 70px 0;
            background: var(--gray-bg);
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--purple-bg);
            color: var(--primary);
            padding: 7px 18px;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .section-label svg {
            width: 16px;
            height: 16px;
            fill: var(--primary);
        }

        .section-title {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .section-title span {
            color: var(--primary);
        }

        .section-desc {
            font-size: 0.95rem;
            color: var(--text-light);
            max-width: 550px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }

        .feature-card {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 28px 20px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon-wrap {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 4px 15px rgba(108, 63, 181, 0.25);
        }

        .feature-card:hover .feature-icon-wrap {
            transform: scale(1.1) rotate(-5deg);
            box-shadow: 0 8px 25px rgba(108, 63, 181, 0.35);
        }

        .feature-icon-wrap svg {
            width: 28px;
            height: 28px;
            fill: white;
        }

        .feature-card h3 {
            font-size: 0.92rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 10px;
            line-height: 1.5;
        }

        .feature-card p {
            font-size: 0.78rem;
            color: var(--text-light);
            line-height: 1.8;
        }

        /* ===== WHY SECTION ===== */
        .why-section {
            padding: 70px 0;
            background: var(--white);
        }

        .why-banner {
            background: var(--gradient-dark);
            border-radius: var(--radius-lg);
            padding: 44px 40px;
            position: relative;
            overflow: hidden;
        }

        .why-banner::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -80px;
            width: 280px;
            height: 280px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 50%;
        }

        .why-banner::after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: -40px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
        }

        .why-title {
            text-align: center;
            font-size: 1.4rem;
            font-weight: 900;
            color: var(--white);
            margin-bottom: 36px;
            position: relative;
            z-index: 2;
        }

        .why-title span {
            color: var(--primary-lighter);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
            position: relative;
            z-index: 2;
        }

        .why-item {
            text-align: center;
            color: var(--white);
            padding: 16px 8px;
            transition: all 0.3s;
        }

        .why-item:hover {
            transform: translateY(-4px);
        }

        .why-item-icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.12);
            border: 2px solid rgba(255, 255, 255, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            transition: all 0.3s;
        }

        .why-item:hover .why-item-icon {
            background: rgba(255, 255, 255, 0.22);
            transform: scale(1.1);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .why-item-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .why-item h4 {
            font-size: 0.9rem;
            font-weight: 800;
            margin-bottom: 6px;
        }

        .why-item p {
            font-size: 0.75rem;
            opacity: 0.8;
            line-height: 1.7;
        }

        /* ===== HOW TO START ===== */
        .howto-section {
            padding: 110px 0;
            background: linear-gradient(180deg, #ffffff 0%, #f7fbf6 100%);
            position: relative;
            overflow: hidden;
        }

        .howto-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 15% 20%, rgba(86, 177, 28, 0.08), transparent 28%),
                radial-gradient(circle at 85% 80%, rgba(5, 22, 36, 0.05), transparent 25%);
            pointer-events: none;
        }

        .howto-layout {
            display: grid;
            grid-template-columns: 1fr minmax(320px, 480px) 1fr;
            gap: 30px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .howto-side {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .howto-step {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px;
            background: rgba(255, 255, 255, 0.88);
            border: 1px solid rgba(15, 23, 42, 0.08);
            border-radius: 22px;
            box-shadow: 0 18px 35px rgba(15, 23, 42, 0.06);
            transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
            backdrop-filter: blur(10px);
            text-align: start;
        }

        .howto-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 24px 50px rgba(15, 23, 42, 0.10);
            border-color: rgba(85, 173, 22, 0.25);
        }

        .step-num {
            width: 52px;
            height: 52px;
            min-width: 52px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #73c922, #4eaa10);
            color: #fff;
            font-size: 22px;
            font-weight: 900;
            box-shadow: 0 14px 28px rgba(85, 173, 22, 0.28);
        }

        .step-icon-box {
            width: 56px;
            height: 56px;
            min-width: 56px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f6fdef;
            color: #55ad16;
            border: 1px solid rgba(85, 173, 22, 0.12);
        }

        .step-icon-box svg {
            width: 26px;
            height: 26px;
            fill: currentColor;
        }

        .step-info h4 {
            margin: 0 0 4px;
            color: #0a1726;
            font-size: 20px;
            font-weight: 800;
        }

        .step-info p {
            margin: 0;
            color: #6b7280;
            font-size: 15px;
            line-height: 1.7;
            font-weight: 600;
        }

        .howto-center {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .howto-image-wrap {
            position: relative;
            width: 100%;
            min-height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 30px;
            border-radius: 34px;
            background:
                radial-gradient(circle at center, rgba(85, 173, 22, 0.08), transparent 48%),
                linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 252, 246, 0.92));
            border: 1px solid rgba(15, 23, 42, 0.08);
            box-shadow: 0 26px 70px rgba(15, 23, 42, 0.08);
            overflow: hidden;
        }

        .howto-image-wrap img {
            width: 100%;
            max-width: 430px;
            position: relative;
            z-index: 2;
            object-fit: contain;
            filter: drop-shadow(0 25px 40px rgba(15, 23, 42, 0.12));
        }

        .howto-orbit {
            position: absolute;
            border-radius: 50%;
            border: 1px dashed rgba(85, 173, 22, 0.22);
            pointer-events: none;
        }

        .orbit-1 {
            width: 360px;
            height: 360px;
        }

        .orbit-2 {
            width: 440px;
            height: 440px;
            opacity: .6;
        }

        .howto-badge {
            position: absolute;
            z-index: 3;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(15, 23, 42, 0.07);
            box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
            border-radius: 14px;
            padding: 10px 14px;
            font-size: 14px;
            font-weight: 800;
            color: #0b1b2b;
        }

        .badge-top {
            top: 35px;
            inset-inline-start: 30px;
        }

        .badge-bottom {
            bottom: 35px;
            inset-inline-end: 30px;
        }

        /* ===== ADVANCED FEATURES ===== */
        .advanced-section {
            padding: 70px 0;
            background: var(--white);
        }

        .advanced-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }

        .adv-card {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 28px;
            border: 1px solid var(--border);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .adv-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .adv-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }

        .adv-card:hover::after {
            transform: scaleX(1);
        }

        .adv-card-head {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        .adv-card-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .adv-card-icon.purple {
            background: var(--gradient-primary);
        }

        .adv-card-icon.blue {
            background: linear-gradient(135deg, #3B82F6, #60A5FA);
        }

        .adv-card-icon.green {
            background: linear-gradient(135deg, #10B981, #34D399);
        }

        .adv-card-icon.orange {
            background: linear-gradient(135deg, #F59E0B, #FBBF24);
        }

        .adv-card-icon.red {
            background: linear-gradient(135deg, #EF4444, #F87171);
        }

        .adv-card-icon.teal {
            background: linear-gradient(135deg, #14B8A6, #2DD4BF);
        }

        .adv-card-icon svg {
            width: 22px;
            height: 22px;
            fill: white;
        }

        .adv-card h3 {
            font-size: 0.92rem;
            font-weight: 800;
            color: var(--dark);
            line-height: 1.4;
        }

        .adv-card p {
            font-size: 0.82rem;
            color: var(--text-light);
            line-height: 1.8;
        }

        .adv-card-visual {
            width: 100%;
            border-radius: 12px;
            margin-top: 14px;
            height: 130px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .adv-card-visual.v1 {
            background: linear-gradient(135deg, #EDE5FF, #F5E6D5);
        }

        .adv-card-visual.v2 {
            background: linear-gradient(135deg, #D5F5E3, #EDE5FF);
        }

        .adv-card-visual.v3 {
            background: linear-gradient(135deg, #EDE5FF, #D5E8F5);
        }

        .adv-card-visual svg {
            width: 100px;
            height: 80px;
        }

        .social-icons-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 14px;
        }

        .soc-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--purple-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .soc-icon:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .soc-icon svg {
            width: 20px;
            height: 20px;
            fill: var(--primary);
            transition: fill 0.3s;
        }

        .soc-icon:hover svg {
            fill: white;
        }

        .ai-percent {
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary);
            margin-top: 6px;
            text-align: center;
        }

        .ai-visual {
            text-align: center;
            margin-top: 12px;
        }

        .shield-visual {
            text-align: center;
            margin-top: 14px;
        }

        .shield-visual svg {
            width: 70px;
            height: 70px;
        }

        /* Second row */
        .adv-grid-2 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .adv-card-2 {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 26px;
            border: 1px solid var(--border);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            text-align: center;
        }

        .adv-card-2:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

        .adv2-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            box-shadow: 0 4px 15px rgba(108, 63, 181, 0.25);
            transition: all 0.3s;
        }

        .adv-card-2:hover .adv2-icon {
            transform: scale(1.08);
            box-shadow: 0 8px 25px rgba(108, 63, 181, 0.35);
        }

        .adv2-icon svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

        .adv-card-2 h3 {
            font-size: 0.92rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .adv-card-2 p {
            font-size: 0.8rem;
            color: var(--text-light);
            line-height: 1.8;
        }

        .ship-logos {
            display: flex;
            gap: 14px;
            justify-content: center;
            margin-top: 14px;
            flex-wrap: wrap;
        }

        .ship-logo {
            padding: 6px 14px;
            background: var(--purple-bg);
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.82rem;
            color: var(--primary);
            transition: all 0.3s;
        }

        .ship-logo:hover {
            background: var(--primary);
            color: white;
        }

        .phone-mockup {
            width: 80px;
            height: 140px;
            background: #1a1a2e;
            border-radius: 16px;
            margin: 14px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border: 2px solid #333;
        }

        .phone-mockup::before {
            content: '';
            position: absolute;
            top: 6px;
            width: 30px;
            height: 4px;
            background: #333;
            border-radius: 2px;
        }

        .phone-screen {
            width: 64px;
            height: 120px;
            background: var(--gradient-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .phone-screen svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

        .app-badges {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-top: 14px;
        }

        .app-badge {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .app-badge:hover {
            transform: translateY(-3px);
        }

        .app-badge svg {
            width: 22px;
            height: 22px;
            fill: white;
        }

        /* ===== MANAGEMENT SECTION ===== */
        .management-section {
            padding: 50px 0;
            background: var(--purple-bg);
        }

        .mgmt-banner {
            background: var(--gradient-dark);
            border-radius: var(--radius-lg);
            padding: 36px;
        }

        .mgmt-title {
            text-align: center;
            color: var(--white);
            font-size: 1.2rem;
            font-weight: 900;
            margin-bottom: 28px;
        }

        .mgmt-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 12px;
        }

        .mgmt-item {
            text-align: center;
            color: var(--white);
            padding: 14px 6px;
            transition: all 0.3s;
        }

        .mgmt-item:hover {
            transform: translateY(-4px);
        }

        .mgmt-item-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            transition: all 0.3s;
        }

        .mgmt-item:hover .mgmt-item-icon {
            background: rgba(255, 255, 255, 0.22);
            border-color: rgba(255, 255, 255, 0.35);
        }

        .mgmt-item-icon svg {
            width: 22px;
            height: 22px;
            fill: white;
        }

        .mgmt-item p {
            font-size: 0.72rem;
            font-weight: 600;
            opacity: 0.9;
            line-height: 1.5;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 70px 0;
            background: var(--white);
        }

        .cta-wrapper {
            background: var(--gradient-cta);
            border-radius: var(--radius-xl);
            padding: 50px;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 40px;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .cta-wrapper::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -80px;
            width: 350px;
            height: 350px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 50%;
        }

        .cta-content {
            color: var(--white);
            position: relative;
            z-index: 2;
        }

        .cta-content h2 {
            font-size: 1.6rem;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .cta-content h2 span {
            color: var(--yellow);
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--yellow);
            color: var(--dark);
            padding: 16px 42px;
            border-radius: 50px;
            font-weight: 900;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 6px 25px rgba(251, 191, 36, 0.3);
            border: none;
            cursor: pointer;
            font-family: 'Cairo', sans-serif;
        }

        .cta-btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 35px rgba(251, 191, 36, 0.4);
        }

        .cta-url {
            display: block;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            font-weight: 600;
            margin-top: 14px;
        }

        .cta-heart {
            display: block;
            text-align: center;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            margin-top: 6px;
        }

        .cta-features-list {
            position: relative;
            z-index: 2;
        }

        .cta-feat-title {
            font-size: 1.05rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 18px;
        }

        .cta-feat-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--white);
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cta-feat-item:last-child {
            border-bottom: none;
        }

        .cta-check-circle {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .cta-check-circle svg {
            width: 12px;
            height: 12px;
            fill: white;
        }

        .cta-feat-item p {
            font-size: 0.88rem;
            font-weight: 600;
        }

        /* ===== FOOTER FEATURES ===== */
        .footer-feats {
            padding: 50px 0;
            background: var(--gray-bg);
            border-top: 1px solid var(--border);
        }

        .footer-feats-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        .footer-feat-item {
            text-align: center;
            padding: 16px;
            transition: all 0.3s;
        }

        .footer-feat-item:hover {
            transform: translateY(-4px);
        }

        .footer-feat-icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(108, 63, 181, 0.2);
        }

        .footer-feat-item:hover .footer-feat-icon {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(108, 63, 181, 0.3);
        }

        .footer-feat-icon svg {
            width: 26px;
            height: 26px;
            fill: white;
        }

        .footer-feat-item h4 {
            font-size: 0.9rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 4px;
        }

        .footer-feat-item p {
            font-size: 0.75rem;
            color: var(--text-light);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark);
            padding: 36px 0;
            color: var(--white);
        }

        .footer-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-logo-row {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-logo-icon {
            width: 34px;
            height: 34px;
            background: var(--gradient-primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-logo-icon svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .footer-logo-text {
            font-size: 1.1rem;
            font-weight: 800;
        }

        .footer-logo-text span {
            color: var(--primary-lighter);
        }

        .footer-links {
            display: flex;
            gap: 20px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .footer-copy {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.8rem;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content {
                order: 1;
            }

            .hero-visual {
                order: 0;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-dual-box {
                max-width: 500px;
                margin: 24px auto;
            }

            .hero-subtitle {
                text-align: center;
            }

            .hero-title {
                font-size: 1.6rem;
            }

            .hero-float-badge {
                display: none;
            }

            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .why-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .advanced-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .adv-grid-2 {
                grid-template-columns: repeat(2, 1fr);
            }

            .mgmt-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .footer-feats-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .howto-wrapper {
                grid-template-columns: 1fr;
            }

            .howto-image {
                display: none;
            }

            .cta-wrapper {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 20px;
                gap: 14px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                border-top: 1px solid var(--border);
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-toggle {
                display: flex;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .mgmt-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .footer-feats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .payment-row {
                gap: 10px;
            }

            .payment-gateway {
                padding: 10px 14px;
                font-size: 0.78rem;
            }

            .payment-banner {
                padding: 24px 20px;
            }

            .payment-cod-box {
                padding: 10px 14px;
            }

            .hero {
                padding: 110px 0 60px;
            }

            .hero-title {
                font-size: 1.4rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .why-banner {
                padding: 32px 24px;
            }

            .why-title {
                font-size: 1.2rem;
            }

            .cta-wrapper {
                padding: 36px 24px;
            }

            .cta-content h2 {
                font-size: 1.3rem;
            }

            .cta-btn {
                padding: 14px 32px;
                font-size: 1rem;
            }

            .advanced-grid {
                grid-template-columns: 1fr;
            }

            .adv-grid-2 {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .features-grid {
                grid-template-columns: 1fr;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .mgmt-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-feats-grid {
                grid-template-columns: 1fr;
            }

            .hero-title {
                font-size: 1.25rem;
            }

            .btn-primary,
            .btn-secondary {
                padding: 12px 28px;
                font-size: 0.9rem;
                width: 100%;
                justify-content: center;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .dual-badges-row {
                justify-content: center;
            }

            .payment-gateway {
                padding: 8px 12px;
                font-size: 0.72rem;
            }

            .payment-cod-box {
                flex-direction: column;
                text-align: center;
            }

            .section-title {
                font-size: 1.3rem;
            }

            .container {
                padding: 0 16px;
            }

            .cta-wrapper {
                padding: 28px 20px;
            }

            .cta-content h2 {
                font-size: 1.15rem;
            }

            .why-grid {
                gap: 12px;
            }

            .why-item {
                padding: 12px 4px;
            }
        }


        /* ===== RTL / LTR + HOWTO RESPONSIVE FIXES ===== */
        [dir="ltr"] .nav-links a::after {
            right: auto;
            left: 0;
        }

        [dir="ltr"] .hero-title .highlight::after {
            right: auto;
            left: 0;
        }

        [dir="ltr"] .hero-float-badge.sales {
            right: auto;
            left: -10px;
        }

        [dir="ltr"] .hero-float-badge.orders {
            left: auto;
            right: -20px;
        }

        [dir="ltr"] .hero-float-badge.products {
            right: auto;
            left: 10px;
        }

        [dir="ltr"] .why-banner::before,
        [dir="ltr"] .payment-banner::before,
        [dir="ltr"] .cta-wrapper::before {
            right: auto;
            left: -80px;
        }

        [dir="ltr"] .why-banner::after,
        [dir="ltr"] .payment-banner::after {
            left: auto;
            right: -40px;
        }

        [dir="ltr"] .howto-step,
        [dir="rtl"] .howto-step {
            text-align: start;
        }

        @media (max-width: 1100px) {
            .howto-layout {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .howto-center {
                order: 1;
            }

            .howto-side-right {
                order: 2;
            }

            .howto-side-left {
                order: 3;
            }

            .howto-side {
                width: 100%;
                max-width: 760px;
                margin-inline: auto;
            }

            .howto-image-wrap {
                min-height: 420px;
            }
        }

        @media (max-width: 640px) {
            .howto-section {
                padding: 80px 0;
            }

            .howto-image-wrap {
                min-height: 320px;
                padding: 18px;
                border-radius: 24px;
            }

            .howto-image-wrap img {
                max-width: 280px;
            }

            .orbit-1,
            .orbit-2,
            .howto-badge {
                display: none;
            }

            .howto-step {
                padding: 15px;
                gap: 12px;
            }

            .step-num {
                width: 46px;
                height: 46px;
                min-width: 46px;
                font-size: 18px;
            }

            .step-icon-box {
                width: 46px;
                height: 46px;
                min-width: 46px;
            }

            .step-info h4 {
                font-size: 17px;
            }

            .step-info p {
                font-size: 13px;
            }
        }