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

        html {
            scroll-behavior: smooth;
        }

        :root {
            --teal: var(--primary-teal, #1D9E75);
            --teal-light: #5DCAA5;
            --teal-dark: #0F8A63;
            --teal-bg: #D4E8E4;
            --teal-soft: #F0F8F7;
            --ink: #111827;
            --ink-light: #6B7280;
            --bg: #FFFFFF;
            --sand: #A68D78;
            --shadow-sm: 0 2px 8px rgba(17, 24, 39, .04);
            --shadow-md: 0 8px 24px rgba(17, 24, 39, .06);
            --shadow-lg: 0 16px 40px rgba(17, 24, 39, .08);
        }

        body {
            font-family: 'Tajawal', sans-serif;
            background-color: var(--bg);
            background-image: url('/images/Pattern_transparent.webp');
            background-size: 545px;
            color: var(--ink);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 8%;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(17, 24, 39, .04);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--ink);
            text-decoration: none;
        }

        .logo img {
            height: 34px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        .nav-links a:not(.btn-sm) {
            text-decoration: none;
            color: var(--ink-light);
            font-weight: 600;
            font-size: .95rem;
            transition: color .2s ease;
        }

        .nav-links a:not(.btn-sm):hover {
            color: var(--teal-dark);
        }

        .btn-sm,
        .btn-main,
        .btn-white,
        .btn-ghost {
            text-decoration: none;
            font-weight: 700;
            border-radius: 10px;
            display: inline-block;
            transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
        }

        .btn-sm {
            padding: 9px 20px;
            background: var(--teal-light);
            color: #fff;
            font-size: 13px;
            box-shadow: 0 4px 12px rgba(93, 202, 165, .25);
        }

        .btn-sm:hover {
            background: var(--teal-dark);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(93, 202, 165, .35);
        }

        .btn-ghost {
            padding: 13px 28px;
            background: transparent;
            color: var(--ink);
            border: 2px solid rgba(17, 24, 39, .08);
        }

        .btn-ghost:hover {
            border-color: var(--teal-light);
            color: var(--teal-dark);
        }

        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 80px 8% 90px;
            gap: 60px;
            background: linear-gradient(to bottom, #FFFFFF 0%, #F0F8F7 100%);
            position: relative;
            overflow: hidden;
        }

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 7px 16px;
            background: rgba(93, 202, 165, .12);
            color: var(--teal-dark);
            border-radius: 999px;
            font-size: .85rem;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .hero-badge::before {
            content: "";
            width: 8px;
            height: 8px;
            background: var(--teal-light);
            border-radius: 999px;
            box-shadow: 0 0 0 4px rgba(93, 202, 165, .2);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                box-shadow: 0 0 0 4px rgba(93, 202, 165, .2);
            }

            50% {
                box-shadow: 0 0 0 8px rgba(93, 202, 165, .05);
            }
        }

        .hero-image {
            flex: 1;
            text-align: left;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1;
        }

        .hero-image::before {
            content: "";
            position: absolute;
            top: -120px;
            left: -84px;
            width: 420px;
            height: 420px;
            background-image: url('/images/Light.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            pointer-events: none;
            z-index: 0;
            opacity: .9;
        }

        .hero-image img {
            width: 100%;
            max-width: 430px;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 24px 48px rgba(17, 24, 39, .12));
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

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

            50% {
                transform: translateY(-12px);
            }
        }

        h1 {
            font-size: 3.6rem;
            font-weight: 900;
            line-height: 1.4;
            margin-bottom: 25px;
            letter-spacing: -.02em;
        }

        h1 span {
            display: inline-block;
            padding: .25em 0;
            line-height: 1.4;
            background: linear-gradient(120deg, var(--teal-light), var(--teal-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: var(--teal-light);
        }

        .hero-desc {
            font-size: 1.1rem;
            color: var(--ink-light);
            margin-bottom: 32px;
            max-width: 540px;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .btn-main {
            padding: 14px 36px;
            background: var(--teal-light);
            color: #fff;
            box-shadow: 0 6px 18px rgba(93, 202, 165, .32);
            font-size: 1rem;
        }

        .btn-main:hover {
            background: var(--teal-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(93, 202, 165, .4);
        }

        .steps-section {
            padding: 80px 8%;
            margin-top: 32px;
            text-align: center;
            border-top: 1px solid rgba(0, 0, 0, .03);
            background-color: transparent;
            background-image: url('/images/Pattern_transparent.webp');
            background-size: 260px;
            position: relative;
            overflow: hidden;
        }

        .steps-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: min(1720px, calc(100% - 64px));
            height: 100%;
            background: #FAFDFD;
            border-radius: 48px;
            z-index: 0;
            box-shadow: var(--shadow-md);
        }

        .steps-section>* {
            position: relative;
            z-index: 1;
        }

        .section-title {
            font-size: .9rem;
            color: var(--sand);
            margin-bottom: 10px;
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .section-heading {
            font-size: 2.4rem;
            font-weight: 900;
            margin-bottom: 60px;
            letter-spacing: -.02em;
        }

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

        .step-card {
            position: relative;
            text-align: center;
            padding: 36px 24px 28px;
            border-radius: 24px;
            background: #fff;
            border: 1px solid rgba(17, 24, 39, .04);
            box-shadow: var(--shadow-sm);
        }

        .step-number {
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 5.5rem;
            line-height: 1;
            font-weight: 800;
            color: rgba(93, 202, 165, .18);
            z-index: 0;
            pointer-events: none;
        }

        .step-card img {
            height: 140px;
            margin-bottom: 18px;
            object-fit: contain;
            position: relative;
            z-index: 1;
        }

        .step-card h3 {
            font-size: 1.25rem;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .step-card p {
            color: var(--ink-light);
            font-size: .95rem;
            padding: 0 6px;
        }

        .footer-banner {
            width: min(1720px, calc(100% - 64px));
            margin: 32px auto 80px;
            background: linear-gradient(135deg, #62D0B6 0%, #4FB89C 100%);
            border-radius: 24px;
            padding: 48px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #fff;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(98, 208, 182, .25);
        }

        .footer-banner::before,
        .footer-banner::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, .08);
            pointer-events: none;
        }

        .footer-banner::before {
            width: 280px;
            height: 280px;
            top: -100px;
            right: -80px;
        }

        .footer-banner::after {
            width: 180px;
            height: 180px;
            bottom: -60px;
            left: -40px;
            background: rgba(255, 255, 255, .06);
        }

        .banner-text {
            position: relative;
            z-index: 1;
        }

        .footer-banner h2 {
            font-size: 1.9rem;
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: -.01em;
        }

        .footer-banner p {
            font-size: .95rem;
            opacity: .95;
            max-width: 500px;
        }

        .btn-white {
            background: #fff;
            color: var(--teal-dark);
            padding: 14px 32px;
            font-weight: 800;
            z-index: 2;
            white-space: nowrap;
            box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
            position: relative;
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(0, 0, 0, .14);
        }

        .step-card {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity .6s ease-out, transform .6s ease-out, box-shadow .35s ease;
        }

        .step-card.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .step-card.is-visible:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

        @media (max-width: 900px) {
            h1 {
                font-size: 2.8rem;
            }

            .hero {
                padding: 60px 6% 70px;
                gap: 30px;
            }

            .section-heading {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 14px 6%;
            }

            .nav-links {
                gap: 12px;
            }

            .nav-links a:not(.btn-sm) {
                display: none;
            }

            .hero {
                flex-direction: column;
                text-align: center;
                padding: 50px 6% 60px;
            }

            .hero-content {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .hero-image {
                order: -1;
                text-align: center;
            }

            .hero-image::before {
                top: -60px;
                left: 50%;
                transform: translateX(-50%);
                width: 320px;
                height: 320px;
            }

            .hero-actions {
                justify-content: center;
            }

            .steps-section {
                margin-top: 20px;
                padding: 60px 6%;
            }

            .steps-section::before {
                width: calc(100% - 20px);
                border-radius: 32px;
            }

            .steps-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                max-width: 420px;
            }

            .footer-banner {
                flex-direction: column;
                text-align: center;
                padding: 40px 24px;
                gap: 24px;
                width: calc(100% - 24px);
            }

            .footer-banner h2 {
                font-size: 1.5rem;
            }

            h1 {
                font-size: 2.3rem;
            }

            .hero-desc {
                margin-left: auto;
                margin-right: auto;
            }
        }

        .toast-error {
            position: fixed;
            top: 24px;
            left: auto;
            right: 24px;
            z-index: 9999;
            display: flex;
            align-items: center;
            gap: 10px;
            /* background: #ef4444; */
            background: rgba(239, 68, 68, 0.75);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(177, 52, 52, 0.1);
            color: #fff;
            padding: 14px 18px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 500;
            direction: rtl;
            min-width: 280px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            animation: slideInLeft 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .toast-error.hide {
            animation: slideOutLeft 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .toast-icon {
            background: #fff;
            color: #ef4444;
            border-radius: 50%;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 13px;
            flex-shrink: 0;
        }

        .toast-close {
            background: none;
            border: none;
            color: #fff;
            font-size: 18px;
            cursor: pointer;
            margin-right: auto;
            line-height: 1;
            padding: 0 4px;
            opacity: 0.8;
        }

        .toast-close:hover {
            opacity: 1;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(120%);
            }

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

        @keyframes slideOutLeft {
            from {
                opacity: 1;
                transform: translateX(0);
            }

            to {
                opacity: 0;
                transform: translateX(120%);
            }

        }

        .lang-switcher {
            position: relative;
            display: inline-flex;
            align-items: center;
        }

        .lang-selected {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #f8fafc;
            border-radius: 10px;
            padding: 6px 10px;
            font-size: 13px;
            font-weight: 700;
            font-family: 'Tajawal', sans-serif;
            cursor: pointer;
            transition: background 0.2s;
            border: none;
            outline: none;
            color: #333;
            user-select: none;
        }

        .lang-selected:hover {
            background: #e9f7f4;
            color: #1D9E75;
        }

        .lang-selected .lang-chevron {
            font-size: 10px;
            color: #aaa;
            margin-inline-start: 2px;
            transition: transform 0.2s;
        }

        .lang-switcher.open .lang-chevron {
            transform: rotate(180deg);
        }

        .lang-dropdown {
            display: none;
            position: absolute;
            top: calc(100% + 8px);
            inset-inline-end: 0;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            overflow: hidden;
            min-width: 130px;
            z-index: 2000;
            flex-direction: column;
        }

        .lang-switcher.open .lang-dropdown {
            display: flex;
        }

        .lang-option {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            font-size: 13px;
            font-weight: 700;
            font-family: 'Tajawal', sans-serif;
            color: #333;
            cursor: pointer;
            transition: background 0.15s, color 0.15s;
            border: none;
            background: none;
            width: 100%;
            text-align: start;
        }

        .lang-option:hover {
            background: #e9f7f4;
            color: #1D9E75;
        }

        .lang-option.is-active {
            color: #1D9E75;
            background: #f0fbf8;
        }
