:root{
            --g50: #f0faf6;
            --g100: #cceadb;
            --g200: #99d5b7;
            --g400: #2ea87b;
            --g500: #1d9e75;
            --g600: #0f7a5a;
            --g700: #0a5a42;
            --g800: #073d2d;
            --n0: #fff;
            --n50: #f7f9f8;
            --n100: #eef1ef;
            --n200: #dde3df;
            --n400: #94a89d;
            --n600: #4a6358;
            --n800: #1a2e24;
            --n900: #0d1a13;
            --gold: #b8841e;
            --gold-l: #e8a83a;
            --gold-bg: #fef8ec;
            --red: #c0392b;
            --blue: #2563a8;
            --r-sm: 8px;
            --r-md: 14px;
            --r-lg: 20px;
            --r-xl: 28px;
            --r-2xl: 36px;
            --sh-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 8px rgba(0, 0, 0, .04);
            --sh-md: 0 4px 16px rgba(0, 0, 0, .08);
            --sh-lg: 0 12px 40px rgba(0, 0, 0, .10);
        }
.dropdown{
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background: var(--n0);
            border: 1px solid var(--n100);
            border-radius: var(--r-md);
            box-shadow: var(--sh-lg);
            padding: .5rem;
            min-width: 220px;
            z-index: 300
        }
.dropdown a{
            display: block;
            padding: .55rem 1rem;
            font-size: 13px;
            color: var(--n600);
            border-radius: var(--r-sm);
            transition: all .15s
        }
.dropdown a:hover{
            background: var(--g50);
            color: var(--g600)
        }
.btn{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: .5rem;
            font-family: 'Cairo', sans-serif;
            font-weight: 700;
            border-radius: var(--r-md);
            cursor: pointer;
            border: none;
            transition: all .2s;
            text-decoration: none;
            line-height: 1
        }
.btn-sm{
            font-size: 13px;
            padding: .5rem 1.1rem
        }
.btn-md{
            font-size: 14px;
            padding: .65rem 1.5rem
        }
.btn-lg{
            font-size: 15px;
            padding: .85rem 2rem
        }
.btn-xl{
            font-size: 16px;
            padding: 1rem 2.4rem
        }
.btn-green{
            background: var(--g500);
            color: #fff;
            box-shadow: 0 3px 12px rgba(29, 158, 117, .28)
        }
.btn-green:hover{
            background: var(--g600);
            transform: translateY(-1px)
        }
.btn-outline{
            background: transparent;
            color: var(--g600);
            border: 1.5px solid var(--g200)
        }
.btn-outline:hover{
            border-color: var(--g500);
            background: var(--g50)
        }
.btn-ghost{
            background: transparent;
            color: var(--n600);
            border: 1.5px solid var(--n200)
        }
.btn-ghost:hover{
            background: var(--n50)
        }
.container{
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 2rem
        }
.section{
            padding: 5.5rem 0
        }
.section-sm{
            padding: 3.5rem 0
        }
.eyebrow{
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .06em;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 100px;
            margin-bottom: .85rem
        }
.ey-green{
            background: var(--g50);
            color: var(--g600);
            border: 1px solid var(--g100)
        }
.ey-white{
            background: rgba(255, 255, 255, .15);
            color: rgba(255, 255, 255, .9);
            border: 1px solid rgba(255, 255, 255, .2)
        }
.h1{
            font-family: 'Tajawal', sans-serif;
            font-weight: 900;
            font-size: clamp(2.4rem, 5vw, 3.8rem);
            line-height: 1.08;
            color: var(--n900)
        }
.h2{
            font-family: 'Tajawal', sans-serif;
            font-weight: 900;
            font-size: clamp(1.9rem, 3.5vw, 2.8rem);
            line-height: 1.15;
            color: var(--n900)
        }
.lead{
            font-size: 1.05rem;
            color: var(--n600);
            line-height: 1.9;
            font-weight: 300
        }
.body-t{
            font-size: .92rem;
            color: var(--n600);
            line-height: 1.8;
            font-weight: 300
        }
.accent{
            color: var(--g500)
        }
.demo-hero{
            background: var(--n50);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden
        }
.hero-dots{
            position: absolute;
            inset: 0;
            background-image: radial-gradient(var(--n200) 1px, transparent 1px);
            background-size: 28px 28px;
            opacity: .5
        }
.hero-glow{
            position: absolute;
            top: -80px;
            right: -80px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(29, 158, 117, .08), transparent 65%)
        }
.demo-hero-inner{
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1240px;
            margin: 0 auto;
            padding: 5rem 2rem;
            position: relative;
            z-index: 2
        }
.demo-form-card{
            background: var(--n0);
            border: 1px solid var(--n100);
            border-radius: var(--r-2xl);
            padding: 2.5rem;
            box-shadow: var(--sh-lg)
        }
.form-header{
            margin-bottom: 2rem
        }
.form-header-title{
            font-family: 'Tajawal', sans-serif;
            font-weight: 900;
            font-size: 1.5rem;
            color: var(--n900);
            margin-bottom: .3rem
        }
.form-header-sub{
            font-size: .88rem;
            color: var(--n400)
        }
.form-steps{
            display: flex;
            gap: .5rem;
            margin-bottom: 2rem
        }
.form-step{
            flex: 1;
            height: 3px;
            border-radius: 2px;
            background: var(--n100);
            transition: background .3s
        }
.form-step.done{
            background: var(--g500)
        }
.form-step.active{
            background: var(--g300)
        }
.fg{
            margin-bottom: 1rem
        }
.fg label{
            display: block;
            font-size: 13px;
            font-weight: 700;
            color: var(--n800);
            margin-bottom: .4rem
        }
.required{
            color: var(--red);
            margin-right: .2rem
        }
.fg input,
        .fg select,
        .fg textarea{
            width: 100%;
            background: var(--n50);
            border: 1.5px solid var(--n100);
            border-radius: var(--r-sm);
            padding: .7rem 1rem;
            font-family: 'Cairo', sans-serif;
            font-size: 14px;
            color: var(--n900);
            outline: none;
            transition: border-color .15s;
            direction: rtl
        }
.fg input:focus,
        .fg select:focus,
        .fg textarea:focus{
            border-color: var(--g400);
            background: var(--n0)
        }
.fg input.error,
        .fg select.error{
            border-color: var(--red)
        }
.field-error{
            display: none;
            margin-top: .45rem;
            font-size: 12px;
            color: var(--red);
            line-height: 1.6
        }
.field-error.show{
            display: block
        }
.form-row{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem
        }
.demo-topics{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: .5rem;
            margin-top: .4rem
        }
.topic-check{
            display: flex;
            align-items: center;
            gap: .5rem;
            padding: .5rem .75rem;
            background: var(--n50);
            border: 1.5px solid var(--n100);
            border-radius: var(--r-sm);
            cursor: pointer;
            transition: all .15s;
            font-size: .85rem;
            color: var(--n600)
        }
.topic-check:hover{
            border-color: var(--g200);
            background: var(--g50)
        }
.topic-check input{
            width: 14px;
            height: 14px;
            accent-color: var(--g500);
            cursor: pointer;
            flex-shrink: 0
        }
.topic-check.checked{
            border-color: var(--g400);
            background: var(--g50);
            color: var(--g700);
            font-weight: 600
        }
.submit-btn{
            width: 100%;
            background: var(--g500);
            color: #fff;
            border: none;
            padding: 1rem;
            border-radius: var(--r-md);
            font-family: 'Cairo', sans-serif;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all .2s;
            margin-top: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: .5rem
        }
.submit-btn:hover{
            background: var(--g600);
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(29, 158, 117, .3)
        }
.submit-btn:disabled{
            background: var(--n200);
            color: var(--n600);
            cursor: wait;
            transform: none;
            box-shadow: none
        }
.form-message{
            display: none;
            margin-top: 1rem;
            padding: .85rem 1rem;
            border-radius: var(--r-sm);
            font-size: .9rem;
            line-height: 1.7;
            text-align: right
        }
.form-message.show{
            display: block
        }
.form-message.error{
            background: #fef2f2;
            border: 1px solid #fecaca;
            color: #991b1b
        }
.form-message.success{
            background: #f0fdf4;
            border: 1px solid #bbf7d0;
            color: #166534
        }
.form-note{
            font-size: 12px;
            color: var(--n400);
            text-align: center;
            margin-top: .75rem
        }
.success-state{
            display: none;
            text-align: center;
            padding: 3rem 1rem
        }
.success-state.show{
            display: block
        }
.success-icon{
            width: 80px;
            height: 80px;
            background: var(--g50);
            border: 3px solid var(--g200);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 1.5rem
        }
.success-title{
            font-family: 'Tajawal', sans-serif;
            font-weight: 900;
            font-size: 1.5rem;
            color: var(--g700);
            margin-bottom: .5rem
        }
.success-desc{
            font-size: .92rem;
            color: var(--n600);
            line-height: 1.8;
            margin-bottom: 1.5rem
        }
.success-steps{
            display: flex;
            flex-direction: column;
            gap: .6rem;
            text-align: right;
            margin-bottom: 1.5rem
        }
.ss-item{
            display: flex;
            align-items: center;
            gap: .65rem;
            padding: .65rem .85rem;
            background: var(--g50);
            border: 1px solid var(--g100);
            border-radius: var(--r-sm);
            font-size: .88rem;
            color: var(--g700)
        }
.ss-num{
            width: 24px;
            height: 24px;
            background: var(--g500);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
            color: #fff;
            flex-shrink: 0
        }
.demo-hero-content{}
.hero-badge{
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            background: var(--gold-bg);
            color: var(--gold);
            border: 1px solid #f0dba0;
            padding: 5px 14px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 1.25rem
        }
.demo-title{
            font-family: 'Tajawal', sans-serif;
            font-weight: 900;
            font-size: clamp(2.4rem, 4.5vw, 3.5rem);
            line-height: 1.1;
            color: var(--n900);
            margin-bottom: 1rem
        }
.demo-title .acc{
            color: var(--g500)
        }
.demo-desc{
            font-size: 1.05rem;
            color: var(--n600);
            line-height: 1.9;
            font-weight: 300;
            margin-bottom: 2rem;
            max-width: 480px
        }
.demo-promises{
            display: flex;
            flex-direction: column;
            gap: .75rem;
            margin-bottom: 2.5rem
        }
.promise-item{
            display: flex;
            align-items: center;
            gap: .75rem
        }
.promise-icon{
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            flex-shrink: 0
        }
.promise-text{
            font-size: .92rem;
            color: var(--n700);
            font-weight: 600
        }
.demo-social-proof{
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.25rem;
            background: var(--n0);
            border: 1px solid var(--n100);
            border-radius: var(--r-lg);
            box-shadow: var(--sh-sm)
        }
.sp-avatars{
            display: flex
        }
.sp-avatar{
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 2px solid var(--n0);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Tajawal', sans-serif;
            font-weight: 900;
            font-size: 13px;
            color: #fff;
            margin-left: -8px
        }
.sp-avatar:first-child{
            margin-left: 0
        }
.sp-text{
            font-size: .85rem;
            color: var(--n600)
        }
.sp-text strong{
            color: var(--n900)
        }
.expect-section{
            background: var(--n0)
        }
.expect-steps{
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem
        }
.expect-step{
            text-align: center;
            padding: 2rem 1rem
        }
.es-num{
            width: 52px;
            height: 52px;
            border-radius: 50%;
            border: 2px solid var(--g200);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Tajawal', sans-serif;
            font-weight: 900;
            font-size: 1.2rem;
            color: var(--g600);
            margin: 0 auto 1rem
        }
.es-icon{
            font-size: 1.8rem;
            margin-bottom: .75rem
        }
.es-title{
            font-family: 'Tajawal', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            color: var(--n900);
            margin-bottom: .4rem
        }
.es-desc{
            font-size: .84rem;
            color: var(--n600);
            line-height: 1.65
        }
.agenda-section{
            background: var(--n50)
        }
.agenda-grid{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start
        }
.agenda-list{
            display: flex;
            flex-direction: column;
            gap: .85rem
        }
.agenda-item{
            display: flex;
            gap: .85rem;
            padding: 1.1rem;
            background: var(--n0);
            border: 1px solid var(--n100);
            border-radius: var(--r-lg);
            transition: all .2s
        }
.agenda-item:hover{
            border-color: var(--g200);
            box-shadow: var(--sh-sm)
        }
.ai-time{
            font-size: 11px;
            font-weight: 700;
            color: var(--n400);
            white-space: nowrap;
            padding-top: .15rem;
            min-width: 60px
        }
.ai-icon{
            font-size: 1.2rem;
            flex-shrink: 0
        }
.ai-title{
            font-family: 'Tajawal', sans-serif;
            font-weight: 700;
            font-size: .92rem;
            color: var(--n900);
            margin-bottom: .2rem
        }
.ai-desc{
            font-size: .8rem;
            color: var(--n400);
            line-height: 1.5
        }
.demo-testis{
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem
        }
.demo-testi{
            background: var(--n0);
            border: 1px solid var(--n100);
            border-radius: var(--r-lg);
            padding: 1.5rem
        }
.dt-stars{
            color: var(--gold-l);
            font-size: 13px;
            margin-bottom: .65rem;
            letter-spacing: 2px
        }
.dt-text{
            font-size: .88rem;
            color: var(--n700);
            line-height: 1.75;
            font-style: italic;
            margin-bottom: .85rem
        }
.dt-author{
            display: flex;
            align-items: center;
            gap: .65rem
        }
.dt-avatar{
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Tajawal', sans-serif;
            font-weight: 900;
            font-size: 13px;
            color: #fff;
            flex-shrink: 0
        }
.dt-name{
            font-size: .85rem;
            font-weight: 700;
            color: var(--n800)
        }
.dt-role{
            font-size: .75rem;
            color: var(--n400)
        }
.trust-section{
            background: var(--n0);
            border-top: 1px solid var(--n100);
            border-bottom: 1px solid var(--n100)
        }
.trust-inner{
            max-width: 1240px;
            margin: 0 auto;
            padding: 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap
        }
.trust-label{
            font-size: 13px;
            font-weight: 700;
            color: var(--n400);
            white-space: nowrap
        }
.trust-items{
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap
        }
.trust-item{
            display: flex;
            align-items: center;
            gap: .5rem;
            font-size: 13px;
            font-weight: 700;
            color: var(--n600)
        }
.trust-item-icon{
            font-size: 1.1rem
        }
.alt-contact-section{
            background: var(--g800)
        }
.alt-inner{
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.5rem
        }
.alt-card{
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: var(--r-xl);
            padding: 2rem;
            text-align: center;
            transition: background .2s
        }
.alt-card:hover{
            background: rgba(255, 255, 255, .08)
        }
.alt-icon{
            font-size: 2.2rem;
            margin-bottom: 1rem
        }
.alt-title{
            font-family: 'Tajawal', sans-serif;
            font-weight: 700;
            font-size: 1.05rem;
            color: #fff;
            margin-bottom: .4rem
        }
.alt-desc{
            font-size: .85rem;
            color: rgba(255, 255, 255, .5);
            margin-bottom: 1.25rem;
            line-height: 1.6
        }
.alt-link{
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            font-size: .9rem;
            font-weight: 700;
            color: var(--g400);
            transition: color .15s
        }
.alt-link:hover{
            color: var(--g300)
        }
@keyframes fadeUp{
            from {
                opacity: 0;
                transform: translateY(20px)
            }
            to {
                opacity: 1;
                transform: translateY(0)
            }
        }
.a1{
            animation: fadeUp .5s .05s both
        }
.a2{
            animation: fadeUp .5s .15s both
        }
@media(max-width:1024px){
.demo-hero-inner{
                grid-template-columns: 1fr;
                min-height: auto;
                padding: 3rem 2rem
            }
.demo-hero-content{
                order: 2
            }
.demo-form-card{
                order: 1
            }
.expect-steps{
                grid-template-columns: 1fr 1fr
            }
.agenda-grid{
                grid-template-columns: 1fr
            }
.alt-inner{
                grid-template-columns: 1fr
            }
}
@media(max-width:768px){
.form-row,
            .demo-topics{
                grid-template-columns: 1fr
            }
.expect-steps{
                grid-template-columns: 1fr
            }
.trust-inner{
                flex-direction: column;
                align-items: flex-start
            }
}
