:root{
    --bg: #0b1220;
    --panel: rgba(255,255,255,.06);
    --panel2: rgba(255,255,255,.10);
    --text: #eaf0ff;
    --muted: rgba(234,240,255,.72);
    --muted2: rgba(234,240,255,.55);
    --border: rgba(255,255,255,.12);
    --shadow: 0 18px 60px rgba(0,0,0,.45);
    --shadow2: 0 10px 30px rgba(0,0,0,.35);

    --primary: #2563eb;
    --primary2: #22c55e;
    --accent: #06b6d4;
    --warn: #f59e0b;

    --radius: 14px;
    --radius-lg: 20px;
    --container: 1180px;

    --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    font-family:var(--font);
    background:
            radial-gradient(900px 600px at 15% 10%, rgba(37,99,235,.35), transparent 60%),
            radial-gradient(700px 500px at 85% 20%, rgba(6,182,212,.25), transparent 55%),
            radial-gradient(700px 500px at 60% 85%, rgba(34,197,94,.18), transparent 55%),
            var(--bg);
    color:var(--text);
    overflow-x:hidden;
}

/* Accessibility */
.sr-only{
    position:absolute !important;
    width:1px;height:1px;
    padding:0;margin:-1px;
    overflow:hidden;clip:rect(0,0,0,0);
    white-space:nowrap;border:0;
}
.skip-link{
    position:absolute; left:12px; top:10px;
    transform: translateY(-140%);
    background:#111827;
    color:#fff;
    padding:10px 12px;
    border-radius:10px;
    z-index:9999;
    border:1px solid rgba(255,255,255,.15);
}
.skip-link:focus{transform:translateY(0); outline:none}

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

.link{color:#bcd3ff; text-underline-offset:3px}
.muted{color:var(--muted2)}

/* Header */
.header{
    position:sticky;
    top:0;
    z-index:1000;
    backdrop-filter: blur(12px);
    background: rgba(10,16,30,.62);
    border-bottom: 1px solid rgba(255,255,255,.10);
}
.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:14px 0;
}

.brand{
    display:flex;
    align-items:baseline;
    gap:10px;
    text-decoration:none;
    color:var(--text);
}
.brand-mark{
    width:36px;height:36px;
    border-radius: 12px;
    display:grid;
    place-items:center;
    font-weight:900;
    background:
            linear-gradient(135deg, rgba(37,99,235,1), rgba(6,182,212,1));
    box-shadow: 0 10px 25px rgba(37,99,235,.35);
}
.brand-name{font-weight:900; letter-spacing:.2px}
.brand-ar{color:var(--muted2); font-weight:800}

.nav{
    display:flex;
    align-items:center;
    gap:12px;
}
.nav-toggle{
    display:none;
    background:transparent;
    border:1px solid rgba(255,255,255,.15);
    border-radius:12px;
    width:44px;height:44px;
    padding:10px;
    cursor:pointer;
}
.nav-toggle span{
    display:block;
    height:2px;
    background:rgba(255,255,255,.8);
    margin:5px 0;
    border-radius:2px;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:18px;
}
.nav-menu a{
    color:var(--muted);
    text-decoration:none;
    font-weight:700;
    font-size:.95rem;
}
.nav-menu a:hover{color:var(--text)}
.btn{display:inline-flex; align-items:center; justify-content:center; gap:10px; cursor:pointer; text-decoration:none; border-radius: 14px; padding:12px 16px; font-weight:900; border:1px solid transparent; transition: .2s ease;}
.btn-sm{padding:10px 12px; border-radius: 12px; font-weight:900}
.btn-block{width:100%}

.btn-primary{
    background: linear-gradient(135deg, rgba(37,99,235,1), rgba(6,182,212,1));
    color:white;
    box-shadow: 0 18px 40px rgba(37,99,235,.25);
}
.btn-primary:hover{transform: translateY(-1px); box-shadow: 0 22px 50px rgba(37,99,235,.30)}
.btn-ghost{
    background: rgba(255,255,255,.06);
    color: var(--text);
    border-color: rgba(255,255,255,.14);
}
.btn-ghost:hover{background: rgba(255,255,255,.10); transform: translateY(-1px)}

/* Language */
.lang{position:relative; display:flex; align-items:center}
.lang-btn{
    display:flex; align-items:center; gap:10px;
    background: rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.14);
    color:var(--text);
    padding:10px 12px;
    border-radius:12px;
    cursor:pointer;
    font-weight:900;
}
.lang-chip{
    width:34px; height:26px;
    border-radius:10px;
    background: rgba(255,255,255,.10);
    display:grid;
    place-items:center;
    font-size:.85rem;
}
.lang-panel{
    position:absolute;
    top: 52px;
    inset-inline-end: 0;
    width: 180px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(10,16,30,.85);
    box-shadow: var(--shadow2);
    padding: 6px;
    display:none;
}
.lang-panel.open{display:block}
.lang-option{
    width:100%;
    text-align:start;
    padding:10px 12px;
    border-radius:12px;
    background:transparent;
    border:0;
    color:var(--text);
    cursor:pointer;
    font-weight:900;
}
.lang-option:hover{background: rgba(255,255,255,.08)}

/* Hero */
.hero{
    padding: 54px 0 26px;
}
.hero-grid{
    display:grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 26px;
    align-items:center;
}
.pill{
    display:inline-flex; align-items:center; gap:10px;
    padding:10px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    color: var(--muted);
    font-weight:900;
    width: fit-content;
}
.pill .dot{
    width:10px;height:10px;border-radius:999px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 0 6px rgba(37,99,235,.18);
}
.hero-title{
    margin: 14px 0 10px;
    font-size: clamp(2.0rem, 3.2vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -.6px;
}
.hero-sub{
    margin:0 0 18px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 700;
}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap}
.hero-trust{
    margin-top: 18px;
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.trust-item{
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
}
.trust-kpi{font-weight:1000; font-size: 1.15rem}
.trust-text{display:block; margin-top:4px; color:var(--muted2); font-weight:800; font-size:.9rem}

/* Hero visual */
.hero-visual{position:relative}
.hero-glow{
    position:absolute;
    inset:-20px;
    background: radial-gradient(closest-side, rgba(37,99,235,.20), transparent 70%);
    filter: blur(10px);
    z-index:0;
}
.glass-card{
    position:relative;
    z-index:1;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.16);
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
    box-shadow: var(--shadow);
    overflow:hidden;
}
.glass-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.12);
}
.traffic{display:flex; gap:8px}
.traffic span{width:10px;height:10px;border-radius:999px;background:rgba(255,255,255,.18)}
.traffic span:nth-child(1){background:rgba(245,158,11,.65)}
.traffic span:nth-child(2){background:rgba(34,197,94,.55)}
.traffic span:nth-child(3){background:rgba(59,130,246,.55)}
.mini-title{font-weight:900;color:var(--muted)}

.kpi-grid{
    padding: 16px;
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.kpi{
    border-radius: 16px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
}
.kpi-label{color:var(--muted2); font-weight:900; font-size:.9rem}
.kpi-value{font-size: 1.6rem; font-weight:1000; margin-top:6px}
.kpi-meta{margin-top:6px; color:var(--muted2); font-weight:800; font-size:.88rem}

.glass-bottom{
    padding: 14px 16px 16px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    border-top: 1px solid rgba(255,255,255,.10);
}
.tag{
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: var(--muted);
    font-weight:900;
    font-size:.9rem;
}

/* Sections */
.section{padding: 56px 0}
.section-alt{
    background: linear-gradient(180deg, transparent, rgba(255,255,255,.03), transparent);
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.section-head{
    text-align:center;
    margin-bottom: 22px;
}
.section-head h2{
    margin:0;
    font-size: clamp(1.5rem, 2.3vw, 2.2rem);
    letter-spacing: -.4px;
}
.section-head p{
    margin: 10px auto 0;
    max-width: 820px;
    color: var(--muted);
    font-weight: 750;
    line-height: 1.7;
}

.cards{
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}
.card{
    padding: 18px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    box-shadow: 0 10px 30px rgba(0,0,0,.22);
    transition: .2s ease;
}
.card:hover{transform: translateY(-3px); background: rgba(255,255,255,.07)}
.card .icon{
    width:44px;height:44px;
    border-radius: 16px;
    display:grid; place-items:center;
    background: linear-gradient(135deg, rgba(37,99,235,.95), rgba(6,182,212,.95));
    font-weight:1000;
}
.card h3{margin: 12px 0 8px; font-weight:1000}
.card p{margin:0; color:var(--muted); line-height:1.7; font-weight:750}

/* Solutions split */
.split{
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}
.panel{
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
}
.panel h3{margin:0 0 10px; font-weight:1000}
.list{
    margin:0;
    padding-inline-start: 18px;
    color: var(--muted);
    font-weight: 800;
    line-height: 1.9;
}

/* API box */
.api-box{
    margin-top:18px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    overflow:hidden;
    box-shadow: var(--shadow2);
}
.api-head{
    padding: 14px 16px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.12);
}
.api-title{font-weight:1000}
.api-badge{
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: var(--muted);
    font-weight: 1000;
    font-size:.85rem;
}
.code{
    margin:0;
    padding: 14px 16px;
    overflow:auto;
    color: #dbe7ff;
}
.code code{
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: .95rem;
}
.api-foot{
    padding: 12px 16px;
    border-top: 1px solid rgba(255,255,255,.10);
    color: var(--muted);
    font-weight: 800;
}

/* Pricing */
.pricing{
    margin-top: 18px;
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.price-card{
    position:relative;
    padding: 18px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    box-shadow: var(--shadow2);
}
.price-card.featured{
    border-color: rgba(37,99,235,.55);
    background: linear-gradient(180deg, rgba(37,99,235,.12), rgba(255,255,255,.05));
}
.badge{
    position:absolute;
    top: 14px;
    inset-inline-end: 14px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(37,99,235,.18);
    border: 1px solid rgba(37,99,235,.40);
    font-weight:1000;
    color: #dbe7ff;
    font-size: .85rem;
}
.price-top h3{margin:0; font-weight:1000}
.price-top p{margin:6px 0 0; color:var(--muted); font-weight:800}
.price-mid{margin:14px 0 10px}
.price-amount{font-size:2.1rem; font-weight:1100; letter-spacing:-.6px}
.price-unit{color:var(--muted2); font-weight:900}
.price-list{
    margin: 12px 0 14px;
    padding-inline-start: 18px;
    color: var(--muted);
    font-weight: 850;
    line-height: 1.9;
}
.fineprint{
    margin: 14px auto 0;
    text-align:center;
    max-width: 900px;
    color: var(--muted2);
    font-weight: 800;
}

/* FAQ */
.faq{display:grid; gap:10px; margin-top:18px}
.faq-item{
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    padding: 14px 16px;
}
.faq-item summary{
    cursor:pointer;
    list-style:none;
    font-weight:1000;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-body{
    margin-top:10px;
    color: var(--muted);
    font-weight: 800;
    line-height: 1.8;
}

/* Contact */
.contact-grid{
    margin-top: 18px;
    display:grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 14px;
}
.contact-card{
    padding: 18px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    box-shadow: var(--shadow2);
}
.contact-card h3{margin:0 0 12px; font-weight:1000}
.contact-line{
    display:flex;
    justify-content:space-between;
    gap:12px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255,255,255,.10);
    color: var(--muted);
    font-weight: 850;
}
.contact-line:last-of-type{border-bottom:0}
.notice{
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.10);
    color: var(--muted);
    font-weight: 850;
    line-height: 1.7;
}
.notice-links{margin-top:8px; display:flex; align-items:center; gap:10px}

.form{
    padding: 18px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    box-shadow: var(--shadow2);
}
label{display:block; font-weight:950}
label span{display:block; margin-bottom:8px; color: var(--muted)}
input, textarea{
    width:100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.18);
    color: var(--text);
    outline:none;
    font-weight: 800;
}
input:focus, textarea:focus{
    border-color: rgba(37,99,235,.55);
    box-shadow: 0 0 0 4px rgba(37,99,235,.20);
}
.row{display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-bottom: 12px}
.form-msg{
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    color: var(--muted);
    font-weight: 900;
    min-height: 18px;
}
.form-msg.ok{border-color: rgba(34,197,94,.55); background: rgba(34,197,94,.10); color:#d7ffe9}
.form-msg.err{border-color: rgba(239,68,68,.55); background: rgba(239,68,68,.10); color:#ffe2e2}

/* Footer */
.footer{
    padding: 28px 0 34px;
    border-top: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.12);
}
.footer-inner{
    display:grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 14px;
    align-items:start;
}
.brand-row{display:flex; gap:12px; align-items:center}
.footer-name{font-weight:1100}
.footer-tag{color:var(--muted2); font-weight:850; margin-top:3px}

.footer-links{
    display:flex;
    flex-wrap:wrap;
    gap: 12px 16px;
    justify-content:flex-end;
    align-items:center;
}
.footer-links a{color:var(--muted); text-decoration:none; font-weight:900}
.footer-links a:hover{color:var(--text)}
.footer-bottom{
    margin-top: 12px;
    display:flex;
    gap:10px;
    align-items:center;
    color: var(--muted2);
    font-weight: 900;
}

/* Cookie */
.cookie{
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display:none;
    z-index: 2000;
}
.cookie.show{display:block}
.cookie-inner{
    margin-inline:auto;
    width:min(var(--container), calc(100% - 0px));
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(10,16,30,.85);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow2);
    padding: 12px 14px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;
}
.cookie-inner p{margin:0; color: var(--muted); font-weight: 850; line-height:1.6}
.cookie-actions{display:flex; gap:10px; flex-wrap:wrap}

/* RTL tweaks */
html[dir="rtl"] .nav-menu a{letter-spacing:0}
html[dir="rtl"] .list,
html[dir="rtl"] .price-list{padding-inline-start: 0; padding-inline-end: 18px}
html[dir="rtl"] .lang-panel{inset-inline-end:auto; inset-inline-start:0}

/* Responsive */
@media (max-width: 980px){
    .hero-grid{grid-template-columns: 1fr; gap: 16px}
    .cards{grid-template-columns: repeat(2, minmax(0, 1fr))}
    .pricing{grid-template-columns: 1fr}
    .contact-grid{grid-template-columns: 1fr}
    .footer-inner{grid-template-columns: 1fr}
    .footer-links{justify-content:flex-start}
}

@media (max-width: 760px){
    .nav-toggle{display:inline-block}
    .nav-menu{
        position: fixed;
        top: 66px;
        inset-inline-start: 0;
        inset-inline-end: 0;
        background: rgba(10,16,30,.92);
        border-bottom: 1px solid rgba(255,255,255,.10);
        display:none;
        flex-direction: column;
        gap: 10px;
        padding: 14px;
    }
    .nav-menu.open{display:flex}
    .hero-trust{grid-template-columns: 1fr}
    .cards{grid-template-columns: 1fr}
    .split{grid-template-columns: 1fr}
    .row{grid-template-columns: 1fr}
    .cookie-inner{flex-direction:column; align-items:flex-start}
}
