:root{
    --bg: #07111f;
    --bg-2: #081528;
    --card: #0d1828;
    --card-2: #101d30;
    --line: rgba(31, 211, 196, 0.12);
    --line-2: rgba(255,255,255,0.08);
    --text: #eef6ff;
    --muted: #8ea6c7;
    --primary: #19e6c1;
    --primary-2: #19c8ff;
    --success: #17d48f;
    --warning: #f1b84c;
    --danger: #ff5e73;
    --radius: 24px;
    --radius-sm: 16px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --container: 1320px;
    --container-narrow: 980px;
    --container-fluid: 1520px;
}

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

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Cairo', sans-serif;
    background:
        radial-gradient(circle at top center, rgba(18, 201, 255, 0.06), transparent 28%),
        radial-gradient(circle at bottom left, rgba(25, 230, 193, 0.08), transparent 24%),
        linear-gradient(180deg, #06111f 0%, #07111f 100%);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

a{
    text-decoration: none;
    color: inherit;
}

img{
    max-width: 100%;
    display: block;
}

/* containers */
.container{
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.container-narrow{
    width: min(var(--container-narrow), calc(100% - 40px));
    margin-inline: auto;
}

.container-fluid{
    width: min(var(--container-fluid), calc(100% - 40px));
    margin-inline: auto;
}

/* header */
.site-header{
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 14px 18px 0;
    backdrop-filter: blur(8px);
}

.header-shell{
    width: 100%;
    min-height: 78px;
    display: grid;
    grid-template-columns: 220px 1fr 260px;
    align-items: center;
    gap: 18px;
    background: rgba(8, 18, 33, 0.86);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 22px;
    padding: 0 22px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.22);
}

.header-right{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-left{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.logo{
    display: inline-flex;
    align-items: center;
}

.logo-text{
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(90deg, #19e6c1, #19c8ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.2px;
}

.main-nav{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
}

.main-nav a{
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
    transition: 0.25s ease;
}

.main-nav a:hover{
    color: var(--text);
}

.header-actions{
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding-inline: 18px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: 0.25s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-lg{
    min-height: 52px;
    padding-inline: 26px;
    font-size: 15px;
}

.btn-primary{
    background: linear-gradient(90deg, var(--primary), #1fd89d);
    color: #062119;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.03), 0 10px 30px rgba(25,230,193,0.18);
}

.btn-primary:hover{
    transform: translateY(-1px);
    filter: brightness(1.04);
}

.btn-ghost{
    color: var(--muted);
    background: transparent;
    border-color: transparent;
}

.btn-ghost:hover{
    color: var(--text);
}

.btn-dark-outline{
    background: rgba(11, 22, 38, 0.85);
    color: var(--text);
    border-color: rgba(255,255,255,0.10);
}

.btn-dark-outline:hover{
    background: rgba(16, 28, 46, 0.95);
}

.menu-toggle{
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    background: rgba(13, 24, 40, 0.9);
    cursor: pointer;
}

.menu-toggle span{
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 5px auto;
    border-radius: 999px;
}

.mobile-nav{
    display: none;
}

/* hero */
.hero-section{
    position: relative;
    width: 100%;
    padding: 34px 0 60px;
    overflow: hidden;
}

.hero-grid{
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34, 72, 121, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 72, 121, 0.12) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0.12));
    pointer-events: none;
}

.hero-wrap{
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content{
    max-width: 860px;
    margin-inline: auto;
    padding-top: 26px;
}

.hero-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(25, 230, 193, 0.28);
    background: rgba(8, 26, 31, 0.42);
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 0 30px rgba(25,230,193,0.08);
}

.hero-content h1{
    margin-top: 18px;
    font-size: clamp(38px, 6vw, 78px);
    line-height: 1.02;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.5px;
}

.hero-content h1 span{
    display: inline-block;
    margin-top: 16px;
    padding-bottom: 50px;
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text{
    max-width: 820px;
    margin: 20px auto 0;
    color: var(--muted);
    font-size: clamp(15px, 1.7vw, 20px);
    line-height: 1.95;
}

.hero-actions{
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-tags{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-tag{
    min-height: 42px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(18, 28, 46, 0.88);
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
}

.hero-dashboard{
    position: relative;
    width: 100%;
    margin: 42px auto 0;
}

.dashboard-shell{
    width: 100%;
    background: linear-gradient(180deg, rgba(9, 20, 37, 0.96), rgba(8, 18, 33, 0.96));
    border: 1px solid rgba(25, 230, 193, 0.10);
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.02),
        0 30px 80px rgba(0,0,0,0.45),
        0 0 60px rgba(25,230,193,0.05);
}

.dashboard-top{
    min-height: 64px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dashboard-status{
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    justify-self: start;
}

.dashboard-title{
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.dashboard-dots{
    display: flex;
    gap: 10px;
    justify-self: end;
}

.dot{
    width: 12px;
    height: 12px;
    border-radius: 999px;
    display: inline-block;
}

.dot-green{ background: #14d98b; }
.dot-gold{ background: #c28b2c; }
.dot-red{ background: #cb454d; }

.dashboard-body{
    padding: 24px;
}

.dashboard-header-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 18px;
}

.dashboard-header-row h3{
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 900;
}

.dashboard-range{
    min-height: 38px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(37, 49, 79, 0.7);
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

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

.stat-box{
    min-height: 112px;
    background: rgba(20, 31, 50, 0.88);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
}

.stat-box small{
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-box strong{
    color: var(--text);
    font-size: clamp(18px, 1.7vw, 22px);
    font-weight: 900;
}

.insights-grid{
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.insight-box{
    min-height: 96px;
    border-radius: 18px;
    padding: 18px;
    background: rgba(14, 25, 42, 0.9);
    border: 1px solid rgba(255,255,255,0.05);
    text-align: right;
}

.insight-box h4{
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 900;
}

.insight-box p{
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.insight-blue{ border-color: rgba(24, 201, 255, 0.35); }
.insight-blue h4{ color: var(--primary-2); }

.insight-green{ border-color: rgba(25, 230, 193, 0.35); }
.insight-green h4{ color: var(--primary); }

.insight-red{ border-color: rgba(255, 94, 115, 0.30); }
.insight-red h4{ color: var(--danger); }

.hero-glow{
    position: absolute;
    z-index: 1;
    border-radius: 999px;
    filter: blur(80px);
    pointer-events: none;
}

.hero-glow-left{
    width: 220px;
    height: 220px;
    background: rgba(25,230,193,0.08);
    left: -120px;
    top: 280px;
}

.hero-glow-right{
    width: 240px;
    height: 240px;
    background: rgba(24,201,255,0.06);
    right: -120px;
    top: 120px;
}

/* sections */
.platforms-section,
.features-section,
.workflow-section,
.cta-section{
    width: 100%;
    position: relative;
    padding: 72px 0;
}

.section-head{
    max-width: 860px;
    margin-inline: auto;
    margin-bottom: 30px;
}

.section-head.center{
    text-align: center;
}

.section-kicker{
    display: inline-block;
    color: var(--primary);
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 8px;
}

.section-head h2{
    font-size: clamp(30px, 4.3vw, 56px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.section-head p{
    color: var(--muted);
    font-size: clamp(15px, 1.7vw, 20px);
    line-height: 1.9;
    margin-top: 10px;
}

.platforms-grid{
    display: grid;
    gap: 16px;
}

.platforms-grid-wide{
    grid-template-columns: repeat(4, 1fr);
}

.platform-card{
    min-height: 170px;
    background: rgba(10, 20, 35, 0.88);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
    padding: 16px;
}

.platform-card span{
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.platform-logo-wrap{
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.03);
    padding: 12px;
}

.platform-logo{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.features-grid{
    display: grid;
    gap: 16px;
}

.features-grid-wide{
    grid-template-columns: repeat(3, 1fr);
}

.feature-card{
    min-height: 220px;
    background: rgba(9, 18, 33, 0.88);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 22px;
    padding: 22px;
}

.feature-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.feature-icon{
    color: var(--primary);
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
}

.feature-number{
    color: rgba(255,255,255,0.12);
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.feature-card h3{
    font-size: clamp(20px, 1.9vw, 28px);
    line-height: 1.25;
    margin-bottom: 10px;
    font-weight: 900;
}

.feature-card p{
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
}

.workflow-line{
    position: relative;
    display: grid;
    gap: 20px;
    margin-top: 26px;
}

.workflow-line-wide{
    grid-template-columns: repeat(4, 1fr);
}

.workflow-line::before{
    content: "";
    position: absolute;
    top: 36px;
    right: 12%;
    left: 12%;
    height: 2px;
    background: rgba(25, 230, 193, 0.28);
}

.workflow-step{
    position: relative;
    text-align: center;
    z-index: 2;
}

.step-number{
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(9, 30, 32, 0.66);
    border: 1px solid rgba(25, 230, 193, 0.35);
    color: var(--primary);
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 0 30px rgba(25,230,193,0.08);
}

.workflow-step h4{
    font-size: clamp(20px, 1.8vw, 26px);
    margin-bottom: 8px;
    font-weight: 900;
}

.workflow-step p{
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}

.audience-box{
    margin-top: 34px;
    background: rgba(9, 18, 33, 0.72);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 26px;
    padding: 28px;
    text-align: center;
}

.audience-box-wide{
    width: 100%;
}

.audience-box h3{
    font-size: clamp(26px, 3vw, 40px);
    margin-bottom: 20px;
    font-weight: 900;
}

.audience-tags{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.audience-tags span{
    min-height: 48px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(18, 29, 48, 0.9);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
}

.cta-box{
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
    padding: 8px 0;
}

.cta-box h2{
    font-size: clamp(30px, 4.2vw, 56px);
    line-height: 1.12;
    font-weight: 900;
    margin-bottom: 10px;
}

.cta-box p{
    max-width: 820px;
    margin: 0 auto;
    color: var(--muted);
    font-size: clamp(15px, 1.7vw, 20px);
    line-height: 1.9;
}

.cta-actions{
    margin-top: 22px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* simple pages */
.simple-page{
    width: 100%;
    padding: 90px 0;
}

.simple-page h1{
    font-size: 40px;
    margin-bottom: 14px;
    font-weight: 900;
}

.simple-page p{
    color: var(--muted);
    font-size: 18px;
}

/* footer */
.site-footer{
    width: 100%;
    padding: 34px 0 40px;
}

.footer-shell{
    width: 100vw;
    margin-right: calc(50% - 50vw);
margin-left: calc(50% - 50vw);
border-radius: 0;
padding: 24px 40px;
    background: rgba(8, 18, 33, 0.72);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 22px;
    padding: 24px 26px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.footer-brand h3{
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    margin-bottom: 10px;
}

.footer-brand p{
    max-width: 100%;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
}

.footer-links-group h4{
    font-size: 15px;
    margin-bottom: 12px;
    color: var(--text);
    font-weight: 800;
}

.footer-links{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a{
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    transition: 0.2s ease;
}

.footer-links a:hover{
    color: var(--text);
}

.footer-bottom{
    padding-top: 14px;
    text-align: center;
}

.footer-bottom p{
    color: rgba(255,255,255,0.55);
    font-size: 13px;
}

/* responsive */
@media (max-width: 1200px){
    .header-shell{
        grid-template-columns: 180px 1fr 230px;
    }

    .main-nav{
        gap: 24px;
    }

    .platforms-grid-wide{
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid-wide{
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow-line-wide{
        grid-template-columns: repeat(2, 1fr);
        row-gap: 28px;
    }

    .workflow-line::before{
        display: none;
    }

    .stats-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .insights-grid{
        grid-template-columns: 1fr;
    }

    .footer-shell{
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand{
        grid-column: 1 / -1;
    }
}

@media (max-width: 992px){
    .header-shell{
        grid-template-columns: 1fr auto;
    }

    .main-nav,
    .header-actions{
        display: none;
    }

    .menu-toggle{
        display: block;
    }

    .mobile-nav{
        display: none;
        margin: 12px 18px 0;
        background: rgba(8, 18, 33, 0.94);
        border: 1px solid rgba(255,255,255,0.07);
        border-radius: 22px;
        padding: 16px;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-nav.is-open{
        display: flex;
    }

    .mobile-nav a{
        min-height: 50px;
        border-radius: 14px;
        padding: 0 16px;
        display: flex;
        align-items: center;
        background: rgba(255,255,255,0.02);
        color: var(--text);
        font-size: 16px;
        font-weight: 700;
    }

    .mobile-link-primary{
        background: linear-gradient(90deg, var(--primary), #1fd89d) !important;
        color: #062119 !important;
    }

    .mobile-link-accent{
        border: 1px solid rgba(255,255,255,0.08);
    }
}

@media (max-width: 768px){
    .container,
    .container-narrow,
    .container-fluid{
        width: min(100%, calc(100% - 24px));
    }

    .site-header{
        padding: 10px 12px 0;
    }

    .header-shell{
        min-height: 72px;
        padding: 0 14px;
        border-radius: 18px;
    }

    .logo-text{
        font-size: 21px;
    }

    .hero-section,
    .platforms-section,
    .features-section,
    .workflow-section,
    .cta-section{
        padding: 58px 0;
    }

    .hero-content{
        padding-top: 8px;
    }

    .hero-badge{
        font-size: 12px;
        padding: 8px 12px;
    }

    .hero-tag{
        font-size: 13px;
        min-height: 40px;
        padding: 0 12px;
        border-radius: 12px;
    }

    .dashboard-top{
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 14px;
        text-align: center;
    }

    .dashboard-status,
    .dashboard-title,
    .dashboard-dots{
        justify-self: center;
    }

    .dashboard-body{
        padding: 18px 14px;
    }

    .dashboard-header-row{
        flex-direction: column;
        align-items: center;
    }

    .stats-grid,
    .platforms-grid-wide,
    .features-grid-wide,
    .workflow-line-wide{
        grid-template-columns: 1fr;
    }

    .platform-card{
        min-height: 150px;
    }

    .platform-logo-wrap{
        width: 58px;
        height: 58px;
        border-radius: 18px;
    }

    .feature-card{
        min-height: auto;
        padding: 20px;
        border-radius: 20px;
    }

    .feature-number{
        font-size: 30px;
    }

    .step-number{
        width: 62px;
        height: 62px;
        border-radius: 18px;
        font-size: 20px;
    }

    .audience-box{
        padding: 22px 16px;
        border-radius: 22px;
    }

    .audience-tags span{
        width: 100%;
    }

    .btn,
    .btn-lg{
        width: 100%;
        min-height: 50px;
        font-size: 15px;
    }

    .hero-actions,
    .cta-actions{
        width: 100%;
        flex-direction: column;
    }

    .footer-shell{
        grid-template-columns: 1fr;
        padding: 20px 18px;
        border-radius: 20px;
        gap: 18px;
    }

    .footer-brand h3{
        font-size: 22px;
    }

    .footer-brand p{
        font-size: 14px;
    }
/* =========================
   FEATURES PAGE FINAL
========================= */

.features-fluid-wrap{
    width: min(1540px, calc(100% - 34px));
    margin-inline: auto;
}

.features-hero-section{
    padding: 72px 0 96px;
}

.features-page-hero-wrap{
    text-align: center;
    max-width: 980px;
    margin-inline: auto;
}

.features-hero-badge{
    gap: 8px;
    padding: 10px 18px;
}

.fx-badge-icon{
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fx-badge-icon img{
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
}

.features-page-hero-wrap h1{
    margin-top: 20px;
    font-size: clamp(46px, 6vw, 84px);
    line-height: 1.02;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.4px;
}

.features-title-gradient{
    display: inline-block;
    margin-top: 8px;
    background: linear-gradient(90deg, #16e2b8 0%, #14c9ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-hero-text{
    max-width: 900px;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.95;
}

.features-hero-actions{
    margin-top: 30px;
    gap: 16px;
}

.features-hero-actions .btn{
    min-width: 190px;
}

.section-kicker-blue{
    color: #23b5ff;
}

.section-kicker-green{
    color: var(--primary);
}

.section-kicker-gold{
    color: var(--warning);
}

.features-core-section,
.features-modules-section,
.features-why-section{
    padding: 96px 0;
}

.features-section-head{
    max-width: 920px;
    margin-inline: auto;
    margin-bottom: 42px;
}

.features-grid-clean{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature-clean-card{
    min-height: 250px;
    background: rgba(9, 18, 33, 0.84);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 22px;
    padding: 26px;
    transition: 0.25s ease;
}

.feature-clean-card:hover{
    border-color: rgba(25, 230, 193, 0.24);
}

.feature-clean-top{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
    direction: ltr;
}

.feature-clean-number{
    font-size: 54px;
    line-height: 1;
    font-weight: 900;
    color: rgba(255,255,255,0.18);
}

.feature-clean-icon{
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(25, 230, 193, 0.09);
    border: 1px solid rgba(25, 230, 193, 0.22);
    box-shadow: 0 0 30px rgba(25,230,193,0.08);
    flex-shrink: 0;
}

.feature-clean-icon img{
    width: 24px;
    height: 24px;
    display: block;
    object-fit: contain;
}

.feature-clean-card h3{
    font-size: 21px;
    line-height: 1.2;
    margin-bottom: 12px;
    font-weight: 900;
    color: var(--text);
}

.feature-clean-card p{
    color: var(--muted);
    font-size: 14px;
    line-height: 1.95;
}

.modules-grid-clean{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.module-clean-card{
    min-height: 220px;
    background: rgba(9, 18, 33, 0.84);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 22px;
    padding: 26px;
    transition: 0.25s ease;
}

.module-clean-card:hover{
    border-color: rgba(25, 230, 193, 0.24);
}

.module-clean-card-highlight{
    border-color: rgba(25, 230, 193, 0.34);
    box-shadow: 0 0 0 1px rgba(25,230,193,0.04), 0 0 42px rgba(25,230,193,0.08);
}

.module-clean-head{
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.module-clean-icon{
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(25, 230, 193, 0.09);
    border: 1px solid rgba(25, 230, 193, 0.22);
    box-shadow: 0 0 28px rgba(25,230,193,0.08);
    flex-shrink: 0;
}

.module-clean-icon img{
    width: 22px;
    height: 22px;
    display: block;
    object-fit: contain;
}

.module-clean-title span{
    display: block;
    color: #23b5ff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.module-clean-title h3{
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
    color: var(--text);
}

.module-clean-card p{
    color: var(--muted);
    font-size: 14px;
    line-height: 1.95;
}

.why-grid-clean{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 1150px;
    margin-inline: auto;
}

.why-clean-card{
    min-height: 180px;
    background: rgba(9, 18, 33, 0.84);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 22px;
    padding: 26px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.why-clean-icon{
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(241, 184, 76, 0.10);
    border: 1px solid rgba(241, 184, 76, 0.24);
    box-shadow: 0 0 32px rgba(241,184,76,0.08);
    flex-shrink: 0;
}

.why-clean-icon img{
    width: 24px;
    height: 24px;
    display: block;
    object-fit: contain;
}

.why-clean-content h3{
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 900;
    color: var(--text);
}

.why-clean-content p{
    color: var(--muted);
    font-size: 14px;
    line-height: 1.95;
}

.cta-box-featured{
    max-width: 980px;
    padding: 68px 36px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(9, 18, 33, 0.84), rgba(10, 20, 35, 0.88));
    box-shadow: 0 0 0 1px rgba(25,230,193,0.03), 0 20px 60px rgba(0,0,0,0.22);
}

.cta-box-icon{
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(25, 230, 193, 0.09);
    border: 1px solid rgba(25, 230, 193, 0.22);
    box-shadow: 0 0 34px rgba(25,230,193,0.08);
    color: var(--primary);
}

.cta-box-icon img{
    width: 30px;
    height: 30px;
    display: block;
    object-fit: contain;
}

@media (max-width: 1200px){
    .features-grid-clean,
    .modules-grid-clean{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px){
    .features-fluid-wrap{
        width: min(100%, calc(100% - 22px));
    }

    .features-hero-section,
    .features-core-section,
    .features-modules-section,
    .features-why-section{
        padding: 64px 0;
    }

    .features-page-hero-wrap h1{
        font-size: clamp(34px, 11vw, 52px);
        line-height: 1.08;
    }

    .page-hero-text{
        font-size: 15px;
    }

    .features-grid-clean,
    .modules-grid-clean,
    .why-grid-clean{
        grid-template-columns: 1fr;
    }

    .feature-clean-card,
    .module-clean-card,
    .why-clean-card{
        min-height: auto;
        padding: 22px;
    }

    .feature-clean-number{
        font-size: 42px;
    }

    .cta-box-featured{
        padding: 42px 18px;
    }

    .features-hero-actions .btn{
        min-width: 100%;
    }
}
/* ===== ICON TUNING ONLY ===== */

/* 1) badge مميزات النظام */
.hero-badge{
    padding: 8px 18px;
    font-size: 14px;
    color: #19e6c1;
    border-color: rgba(25, 230, 193, 0.28);
    background: rgba(10, 35, 34, 0.35);
    box-shadow: 0 0 24px rgba(25,230,193,0.06);
}

.hero-badge img{
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(79%) sepia(48%) saturate(972%) hue-rotate(110deg) brightness(95%) contrast(92%);
}

/* 2) كل الأيقونات الخضراء في Core + Modules + CTA */
.icon-box{
    background: rgba(13, 55, 50, 0.55);
    border: 1px solid rgba(25, 230, 193, 0.30);
    box-shadow:
        inset 0 0 0 1px rgba(25,230,193,0.05),
        0 0 30px rgba(25,230,193,0.10);
}

.icon-box img{
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(79%) sepia(48%) saturate(972%) hue-rotate(110deg) brightness(95%) contrast(92%);
}

/* 3) why adverxpro gold icons */
.why-card .icon-box{
    background: rgba(65, 47, 14, 0.58);
    border: 1px solid rgba(241, 184, 76, 0.28);
    box-shadow:
        inset 0 0 0 1px rgba(241,184,76,0.05),
        0 0 30px rgba(241,184,76,0.10);
}

.why-card .icon-box img{
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(76%) sepia(65%) saturate(748%) hue-rotate(356deg) brightness(98%) contrast(90%);
}

/* 4) تكبير Why AdverXpro */
.why-title-en{
    font-size: 18px !important;
    font-weight: 800 !important;
    letter-spacing: 0.2px;
}

/* 5) CTA rocket green */
.cta-box .icon-box{
    width: 84px;
    height: 84px;
    border-radius: 20px;
    background: rgba(13, 55, 50, 0.55);
    border: 1px solid rgba(25, 230, 193, 0.30);
    box-shadow:
        inset 0 0 0 1px rgba(25,230,193,0.05),
        0 0 34px rgba(25,230,193,0.10);
}

.cta-box .icon-box img{
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(79%) sepia(48%) saturate(972%) hue-rotate(110deg) brightness(95%) contrast(92%);
}


/* =========================
   PRICING PAGE
========================= */

.pricing-page{
    position: relative;
    z-index: 1;
}

.pricing-shell{
    width: min(1520px, calc(100% - 32px));
    margin-inline: auto;
    position: relative;
    z-index: 2;
}

.pricing-shell-narrow{
    width: min(1180px, calc(100% - 32px));
}

.pricing-hero-section{
    position: relative;
    padding: 76px 0 92px;
    overflow: hidden;
}

.pricing-hero-shell{
    text-align: center;
}

.pricing-hero-content{
    max-width: 980px;
    margin-inline: auto;
}

.pricing-hero-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(25, 230, 193, 0.28);
    background: rgba(8, 26, 31, 0.42);
    color: var(--primary);
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 0 30px rgba(25,230,193,0.08);
}

.pricing-hero-badge img{
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.pricing-hero-title{
    margin-top: 24px;
    font-size: clamp(46px, 6vw, 88px);
    line-height: 1.02;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.6px;
}

.pricing-hero-title span{
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pricing-hero-desc{
    max-width: 980px;
    margin: 20px auto 0;
    color: var(--muted);
    font-size: clamp(17px, 1.8vw, 22px);
    line-height: 1.95;
}

.pricing-plans-section,
.pricing-compare-section,
.pricing-faq-section,
.pricing-cta-section{
    position: relative;
    padding: 92px 0;
}

.pricing-section-head{
    text-align: center;
    max-width: 900px;
    margin: 0 auto 48px;
}

.pricing-kicker{
    display: inline-block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.pricing-kicker-blue{
    color: #23b5ff;
}

.pricing-kicker-green{
    color: var(--primary);
}

.pricing-section-head h2{
    font-size: clamp(34px, 4vw, 64px);
    line-height: 1.15;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 12px;
}

.pricing-section-head p{
    color: var(--muted);
    font-size: 17px;
    line-height: 1.9;
}

/* cards */
.pricing-cards-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.pricing-card{
    position: relative;
    background: rgba(9, 18, 33, 0.84);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 30px 28px 28px;
    min-height: 820px;
    display: flex;
    flex-direction: column;
}

.pricing-card-featured{
    border-color: rgba(35, 181, 255, 0.30);
    box-shadow: 0 0 40px rgba(35,181,255,0.10);
    transform: translateY(-10px);
}

.pricing-featured-badge{
    position: absolute;
    top: -18px;
    right: 50%;
    transform: translateX(50%);
    min-height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    background: #23b5ff;
    color: #07111b;
    font-size: 14px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 0 28px rgba(35,181,255,0.35);
}

.pricing-featured-badge img{
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.pricing-card-head{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.pricing-card-plan-text span{
    display: block;
    font-size: 15px;
    color: #93a9c8;
    margin-bottom: 8px;
}

.pricing-card-plan-text h3{
    font-size: 28px;
    line-height: 1.25;
    font-weight: 900;
    color: var(--text);
}

.pricing-card-desc{
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
    min-height: 90px;
    margin-bottom: 28px;
}

.pricing-card-icon{
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-card-icon img{
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.pricing-card-icon-green{
    background: rgba(13, 55, 50, 0.55);
    border: 1px solid rgba(25, 230, 193, 0.30);
    box-shadow: inset 0 0 0 1px rgba(25,230,193,0.05), 0 0 30px rgba(25,230,193,0.10);
}

.pricing-card-icon-green img{
    filter: brightness(0) saturate(100%) invert(79%) sepia(48%) saturate(972%) hue-rotate(110deg) brightness(95%) contrast(92%);
}

.pricing-card-icon-blue{
    background: rgba(21, 55, 82, 0.55);
    border: 1px solid rgba(35, 181, 255, 0.30);
    box-shadow: inset 0 0 0 1px rgba(35,181,255,0.05), 0 0 30px rgba(35,181,255,0.12);
}

.pricing-card-icon-blue img{
    filter: brightness(0) saturate(100%) invert(62%) sepia(94%) saturate(1546%) hue-rotate(173deg) brightness(101%) contrast(101%);
}

.pricing-card-icon-gold{
    background: rgba(65, 47, 14, 0.58);
    border: 1px solid rgba(241, 184, 76, 0.28);
    box-shadow: inset 0 0 0 1px rgba(241,184,76,0.05), 0 0 30px rgba(241,184,76,0.10);
}

.pricing-card-icon-gold img{
    filter: brightness(0) saturate(100%) invert(76%) sepia(65%) saturate(748%) hue-rotate(356deg) brightness(98%) contrast(90%);
}

.pricing-price-wrap{
    margin-bottom: 28px;
}

.pricing-price-row{
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.pricing-price-row small{
    font-size: 18px;
    color: #9db0cb;
    font-weight: 700;
}

.pricing-price-row strong{
    font-size: 64px;
    line-height: 1;
    font-weight: 900;
    color: #f2f7ff;
}

.pricing-price-highlight{
    color: var(--primary);
}

.pricing-price-wrap > span{
    display: inline-block;
    margin-top: 8px;
    color: #9db0cb;
    font-size: 18px;
}

.pricing-features-list{
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.pricing-features-list li{
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.8;
}

.pricing-features-list img{
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(79%) sepia(48%) saturate(972%) hue-rotate(110deg) brightness(95%) contrast(92%);
}

.pricing-features-list-blue img{
    filter: brightness(0) saturate(100%) invert(62%) sepia(94%) saturate(1546%) hue-rotate(173deg) brightness(101%) contrast(101%);
}

.pricing-card-btn{
    width: 100%;
    min-height: 64px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 900;
    transition: 0.25s ease;
}

.pricing-btn-green{
    background: #1bd89b;
    color: #07111b;
}

.pricing-btn-blue{
    background: #23b5ff;
    color: #07111b;
}

.pricing-card-btn:hover{
    transform: translateY(-1px);
}

.pricing-btn-arrow{
    font-size: 24px;
    line-height: 1;
}

/* compare */
.pricing-compare-table-wrap{
    background: rgba(9, 18, 33, 0.84);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    overflow: hidden;
}

.pricing-compare-table{
    width: 100%;
    border-collapse: collapse;
}

.pricing-compare-table th,
.pricing-compare-table td{
    padding: 26px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 18px;
    color: var(--text);
}

.pricing-compare-table th{
    font-weight: 900;
}

.pricing-compare-table tbody tr:last-child td{
    border-bottom: 0;
}

.pricing-compare-table .compare-feature-col{
    text-align: right;
    width: 28%;
}

.compare-starter{
    color: var(--text);
}

.compare-pro{
    color: #23b5ff;
}

.compare-enterprise{
    color: #f1b84c;
}

.compare-icon{
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.pricing-compare-table td .compare-icon[src*="check"]{
    filter: brightness(0) saturate(100%) invert(79%) sepia(48%) saturate(972%) hue-rotate(110deg) brightness(95%) contrast(92%);
}

.pricing-compare-table td .compare-icon[src*="close"]{
    filter: brightness(0) saturate(100%) invert(44%) sepia(53%) saturate(1803%) hue-rotate(319deg) brightness(96%) contrast(97%);
}

/* faq */
.pricing-faq-list{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pricing-faq-item{
    background: rgba(9, 18, 33, 0.84);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 22px;
    overflow: hidden;
}

.pricing-faq-item summary{
    list-style: none;
    min-height: 88px;
    padding: 0 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 16px;
}

.pricing-faq-item summary::-webkit-details-marker{
    display: none;
}

.faq-title{
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
}

.faq-icons{
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.faq-q{
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(79%) sepia(48%) saturate(972%) hue-rotate(110deg) brightness(95%) contrast(92%);
}

.faq-arrow{
    width: 18px;
    height: 18px;
    object-fit: contain;
    transition: 0.25s ease;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(28deg) brightness(104%) contrast(101%);
}

.pricing-faq-item[open] .faq-arrow{
    transform: rotate(180deg);
}

.pricing-faq-answer{
    padding: 0 26px 24px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.9;
}

/* cta */
.pricing-cta-box{
    max-width: 1080px;
    margin-inline: auto;
    text-align: center;
    background: rgba(9, 18, 33, 0.84);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 30px;
    padding: 74px 34px;
}

.pricing-cta-icon{
    width: 82px;
    height: 82px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 55, 50, 0.55);
    border: 1px solid rgba(25, 230, 193, 0.30);
    box-shadow: inset 0 0 0 1px rgba(25,230,193,0.05), 0 0 30px rgba(25,230,193,0.10);
    margin-bottom: 20px;
}

.pricing-cta-icon img{
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(79%) sepia(48%) saturate(972%) hue-rotate(110deg) brightness(95%) contrast(92%);
}

.pricing-cta-box h2{
    font-size: clamp(34px, 4vw, 62px);
    line-height: 1.2;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 14px;
}

.pricing-cta-box p{
    max-width: 780px;
    margin: 0 auto 26px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.9;
}

.pricing-cta-btn{
    max-width: 320px;
    margin-inline: auto;
}

/* responsive */
@media (max-width: 1200px){
    .pricing-cards-grid{
        grid-template-columns: 1fr;
    }

    .pricing-card{
        min-height: auto;
    }

    .pricing-card-featured{
        transform: none;
    }
}

@media (max-width: 768px){
    .pricing-shell,
    .pricing-shell-narrow{
        width: min(100%, calc(100% - 22px));
    }

    .pricing-hero-section,
    .pricing-plans-section,
    .pricing-compare-section,
    .pricing-faq-section,
    .pricing-cta-section{
        padding: 64px 0;
    }

    .pricing-hero-title{
        font-size: clamp(34px, 11vw, 52px);
        line-height: 1.08;
    }

    .pricing-hero-desc,
    .pricing-section-head p,
    .pricing-cta-box p{
        font-size: 15px;
    }

    .pricing-section-head h2{
        font-size: 32px;
    }

    .pricing-compare-table th,
    .pricing-compare-table td{
        padding: 18px 12px;
        font-size: 14px;
    }

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

    .pricing-faq-item summary{
        min-height: 78px;
        padding: 0 18px;
    }

    .pricing-faq-answer{
        padding: 0 18px 20px;
        font-size: 15px;
    }

    .pricing-card{
        padding: 24px 20px;
    }

    .pricing-price-row strong{
        font-size: 50px;
    }

    .pricing-features-list li{
        font-size: 16px;
    }

    .pricing-card-btn{
        min-height: 58px;
        font-size: 18px;
    }

    .pricing-cta-box{
        padding: 48px 20px;
        border-radius: 24px;
    }
}

}