:root {
    --bg: #f5f8ff;
    --surface: #ffffff;
    --surface-soft: #eef4ff;
    --ink: #0b1324;
    --muted: #64748b;
    --line: #dbe5f4;
    --brand: #155eef;
    --brand-light: #5b8cff;
    --brand-dark: #102a6b;
    --navy: #07142f;
    --cyan: #2dd4bf;
    --green: #16a34a;
    --whatsapp: #20b95a;
    --orange: #f59e0b;
    --danger: #dc2626;
    --shadow: 0 28px 80px rgba(15, 39, 86, .13);
    --shadow-soft: 0 15px 40px rgba(15, 39, 86, .08);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--surface);
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body, button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { border: 0; cursor: pointer; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.ar { display: none !important; }
.ar.block { display: none !important; }

html[lang="ar"] body {
    font-family: "Cairo", Tahoma, Arial, sans-serif;
    font-weight: 500;
    line-height: 1.8;
}
html[lang="ar"] .en { display: none !important; }
html[lang="ar"] .ar { display: inline !important; }
html[lang="ar"] .ar.block { display: block !important; }
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] strong,
html[lang="ar"] b { font-family: "Cairo", Tahoma, Arial, sans-serif; }
html[lang="ar"] [dir="ltr"] { font-family: "Inter", Arial, sans-serif; }

.skip-link {
    position: fixed;
    z-index: 9999;
    inset-inline-start: 20px;
    top: -80px;
    padding: 12px 18px;
    color: #fff;
    background: var(--navy);
    border-radius: 999px;
    transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    border-bottom: 1px solid rgba(219, 229, 244, .72);
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 35px rgba(15, 39, 86, .08); background: rgba(255, 255, 255, .96); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), #6e8fff);
    border-radius: 15px;
    box-shadow: 0 12px 28px rgba(21, 94, 239, .24);
    font-size: 20px;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.12; }
.brand-copy strong { font-size: 18px; font-weight: 900; letter-spacing: -.035em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav > a:not(.button) { color: #334155; font-size: 14px; font-weight: 750; transition: color .15s ease; }
.main-nav > a:not(.button):hover { color: var(--brand); }
.nav-toggle { display: none; width: 44px; height: 44px; color: var(--ink); background: #eef4ff; border-radius: 14px; font-size: 24px; }
.language-switch { display: inline-flex; padding: 3px; border: 1px solid var(--line); background: #f8fafc; border-radius: 999px; }
.language-switch button { min-width: 42px; min-height: 32px; padding: 0 10px; color: var(--muted); background: transparent; border-radius: 999px; font-size: 12px; font-weight: 850; }
.language-switch button.is-active { color: #fff; background: var(--navy); }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 19px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.2;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(21, 94, 239, .24); outline-offset: 3px; }
.button--header { min-height: 42px; padding-inline: 15px; color: #fff; background: var(--brand); box-shadow: 0 10px 24px rgba(21, 94, 239, .18); }
.button--large { min-height: 54px; padding-inline: 24px; border-radius: 17px; }
.button--primary { color: #fff; background: linear-gradient(135deg, var(--brand), #477cff); box-shadow: 0 15px 34px rgba(21, 94, 239, .27); }
.button--primary:hover { box-shadow: 0 18px 42px rgba(21, 94, 239, .34); }
.button--glass { color: #dce8ff; border-color: rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .09); backdrop-filter: blur(10px); }
.button--glass:hover { background: rgba(255, 255, 255, .16); }
.button--white { color: var(--brand-dark); background: #fff; box-shadow: 0 16px 36px rgba(0, 0, 0, .18); }
.button--outline { width: 100%; color: var(--brand); border-color: #c7d8fa; background: #fff; }
.button--outline:hover { color: #fff; border-color: var(--brand); background: var(--brand); }
.button--quiet { color: #334155; border-color: var(--line); background: #fff; }
.button--whatsapp { color: #fff; background: linear-gradient(135deg, var(--whatsapp), #0d8d43); box-shadow: 0 13px 28px rgba(32, 185, 90, .24); }

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 74px 0 62px;
    color: #fff;
    background: radial-gradient(circle at 10% 20%, rgba(70, 124, 255, .42), transparent 31rem), radial-gradient(circle at 92% 20%, rgba(45, 212, 191, .18), transparent 27rem), linear-gradient(135deg, #06132f 0%, #0a2458 52%, #123b8c 100%);
}
.hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .24;
    background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, #000, transparent 90%);
}
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(2px); }
.hero-glow--one { width: 480px; height: 480px; inset-inline-start: -240px; top: -230px; background: rgba(91, 140, 255, .22); }
.hero-glow--two { width: 380px; height: 380px; inset-inline-end: -170px; bottom: -210px; background: rgba(45, 212, 191, .14); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr); align-items: center; gap: 58px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.eyebrow { min-height: 36px; padding: 7px 13px; color: #dbeafe; border: 1px solid rgba(255, 255, 255, .16); background: rgba(255, 255, 255, .08); border-radius: 999px; }
.pulse-dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 0 7px rgba(74, 222, 128, .14); animation: pulse 1.9s ease-in-out infinite; }
@keyframes pulse { 50% { transform: scale(.68); opacity: .65; } }
.hero h1 { max-width: 700px; margin: 24px 0 20px; font-size: clamp(42px, 5vw, 70px); line-height: 1.02; letter-spacing: -.055em; font-weight: 900; }
.hero-lead { max-width: 690px; margin: 0; color: #c8d7f3; font-size: 17px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; color: #c8d7f3; font-size: 12px; font-weight: 750; }
.hero-proof span { display: inline-flex; align-items: center; gap: 6px; }
.hero-proof i { color: #62e6cc; }

.secure-access-shell { position: relative; min-height: 580px; scroll-margin-top: 110px; }
.access-token-form { display: none; }
.access-skeleton { min-height: 570px; padding: 30px; overflow: hidden; border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius-xl); background: rgba(255,255,255,.96); box-shadow: 0 35px 90px rgba(0,0,0,.28); }
.access-skeleton span { display: block; height: 20px; margin-bottom: 18px; border-radius: 999px; background: linear-gradient(90deg, #edf2f8, #f8fbff, #edf2f8); background-size: 220% 100%; animation: skeleton 1.4s linear infinite; }
.access-skeleton span:nth-child(1) { width: 34%; }
.access-skeleton span:nth-child(2) { width: 72%; height: 38px; }
.access-skeleton span:nth-child(3) { width: 46%; height: 220px; margin: 48px auto 20px; border-radius: 24px; }
.access-skeleton span:nth-child(4) { width: 68%; margin-inline: auto; }
@keyframes skeleton { to { background-position: -220% 0; } }
.access-noscript { padding: 20px; color: #991b1b; background: #fff1f2; border-radius: 18px; }
.access-panel { min-height: 570px; padding: 28px; color: var(--ink); border: 1px solid rgba(255,255,255,.32); border-radius: var(--radius-xl); background: rgba(255,255,255,.975); box-shadow: 0 35px 90px rgba(0,0,0,.28); }
.access-panel__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.access-kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-size: 11px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.access-live-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 0 6px rgba(34,197,94,.12); }
.access-panel__head h2 { max-width: 390px; margin: 9px 0 0; font-size: 25px; line-height: 1.22; letter-spacing: -.035em; }
.access-status { display: inline-flex; align-items: center; gap: 6px; flex: 0 0 auto; min-height: 32px; padding: 0 11px; border-radius: 999px; font-size: 11px; font-weight: 850; }
.access-status--active { color: #166534; background: #dcfce7; }
.access-status--muted { color: #475569; background: #f1f5f9; }
.access-panel__body { display: grid; grid-template-columns: minmax(205px, .78fr) minmax(0, 1.22fr); gap: 25px; padding-top: 24px; }
.access-qr-column { display: flex; flex-direction: column; align-items: center; }
.access-qr { position: relative; display: grid; place-items: center; width: 218px; height: 218px; padding: 14px; border: 1px solid #d5e0ee; background: #fff; border-radius: 24px; box-shadow: 0 16px 40px rgba(15,39,86,.12); }
.access-qr img { width: 190px; height: 190px; object-fit: contain; border-radius: 12px; }
.access-qr__placeholder { display: grid; place-items: center; width: 190px; height: 190px; color: #94a3b8; background: #f8fafc; border-radius: 14px; font-size: 80px; }
.access-qr__corner { position: absolute; width: 27px; height: 27px; border-color: var(--brand); border-style: solid; }
.access-qr__corner--one { inset-inline-start: -3px; top: -3px; border-width: 3px 0 0 3px; border-radius: 12px 0 0 0; }
.access-qr__corner--two { inset-inline-end: -3px; top: -3px; border-width: 3px 3px 0 0; border-radius: 0 12px 0 0; }
.access-qr__corner--three { inset-inline-start: -3px; bottom: -3px; border-width: 0 0 3px 3px; border-radius: 0 0 0 12px; }
.access-qr__corner--four { inset-inline-end: -3px; bottom: -3px; border-width: 0 3px 3px 0; border-radius: 0 0 12px 0; }
html[dir="rtl"] .access-qr__corner--one { border-width: 3px 3px 0 0; border-radius: 0 12px 0 0; }
html[dir="rtl"] .access-qr__corner--two { border-width: 3px 0 0 3px; border-radius: 12px 0 0 0; }
html[dir="rtl"] .access-qr__corner--three { border-width: 0 3px 3px 0; border-radius: 0 0 12px 0; }
html[dir="rtl"] .access-qr__corner--four { border-width: 0 0 3px 3px; border-radius: 0 0 0 12px; }
.access-countdown { width: 100%; margin-top: 18px; color: var(--muted); text-align: center; font-size: 12px; font-weight: 750; }
.access-countdown strong { color: var(--ink); }
.access-countdown__track { display: block; height: 6px; margin-bottom: 9px; overflow: hidden; background: #e9eff8; border-radius: 999px; }
.access-countdown__track span { display: block; height: 100%; background: linear-gradient(90deg, var(--brand), var(--cyan)); border-radius: inherit; transition: width .3s linear; }
.access-steps { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.access-steps li { display: grid; grid-template-columns: 34px 1fr; align-items: flex-start; gap: 11px; }
.access-steps li > span { display: grid; place-items: center; width: 34px; height: 34px; color: var(--brand); background: #eaf1ff; border-radius: 11px; font-size: 12px; font-weight: 900; }
.access-steps p { display: flex; flex-direction: column; margin: 0; line-height: 1.4; }
.access-steps b { font-size: 13px; }
.access-steps small { margin-top: 4px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.access-actions { display: grid; gap: 9px; margin-top: 20px; }
.access-waiting { display: flex; align-items: center; gap: 9px; margin: 15px 0 0; color: var(--muted); font-size: 11px; font-weight: 700; }
.access-spinner { width: 13px; height: 13px; border: 2px solid #dbe5f4; border-top-color: var(--brand); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.access-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 450px; padding: 40px 18px; text-align: center; }
.access-empty__icon { display: grid; place-items: center; width: 76px; height: 76px; color: var(--brand); background: #eaf1ff; border-radius: 26px; font-size: 32px; }
.access-empty h3 { margin: 20px 0 9px; font-size: 23px; }
.access-empty p { max-width: 410px; margin: 0 0 22px; color: var(--muted); }
.access-empty__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; }
.access-error { padding: 12px 14px; color: #991b1b !important; background: #fff1f2; border-radius: 14px; }

.proof-strip { position: relative; z-index: 3; border-bottom: 1px solid var(--line); background: #fff; }
.proof-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.proof-grid article { position: relative; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 0 12px; min-height: 128px; padding: 26px 22px; border-inline-end: 1px solid var(--line); }
.proof-grid article:first-child { border-inline-start: 1px solid var(--line); }
.proof-grid i { grid-row: span 2; display: grid; place-items: center; width: 42px; height: 42px; color: var(--brand); background: #edf3ff; border-radius: 14px; }
.proof-grid strong { font-size: 23px; line-height: 1.1; letter-spacing: -.03em; }
.proof-grid article > span { color: var(--muted); font-size: 11px; font-weight: 700; }

.section { padding: 100px 0; }
.section--light { background: var(--bg); }
.section--dark { color: #fff; background: var(--navy); }
.section-heading { margin-bottom: 48px; }
.section-heading--split { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(290px, .65fr); align-items: end; gap: 60px; }
.section-heading--center { max-width: 820px; margin-inline: auto; text-align: center; }
.section h2, .contact-card h2 { margin: 14px 0 0; font-size: clamp(34px, 4.2vw, 55px); line-height: 1.08; letter-spacing: -.045em; font-weight: 900; }
.section-heading p, .industry-grid > div > p, .payment-copy p { margin: 0; color: var(--muted); font-size: 16px; }
.section-heading--center p { margin-top: 18px; }
.section-heading--dark p { color: #a9bad8; }
.section-kicker--dark { color: #72e7d1; }

.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.solution-card { position: relative; min-height: 310px; padding: 28px; overflow: hidden; border: 1px solid var(--line); background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.solution-card:hover { transform: translateY(-5px); border-color: #bcd0f8; box-shadow: var(--shadow); }
.solution-card--featured { color: #fff; border-color: transparent; background: radial-gradient(circle at 90% 10%, rgba(45,212,191,.25), transparent 15rem), linear-gradient(140deg, #0d3379, var(--brand)); }
.solution-icon { display: grid; place-items: center; width: 52px; height: 52px; color: var(--brand); background: #edf3ff; border-radius: 17px; font-size: 21px; }
.solution-card--featured .solution-icon { color: #fff; background: rgba(255,255,255,.14); }
.solution-label { position: absolute; top: 29px; inset-inline-end: 28px; color: var(--brand); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.solution-card--featured .solution-label { color: #b8faec; }
.solution-card h3 { margin: 25px 0 10px; font-size: 21px; letter-spacing: -.025em; }
.solution-card p { margin: 0; color: var(--muted); font-size: 14px; }
.solution-card--featured p { color: #d4e2ff; }
.solution-card ul { display: grid; gap: 6px; margin: 18px 0 0; padding: 0; list-style: none; font-size: 12px; font-weight: 750; }
.solution-card li { display: flex; align-items: flex-start; gap: 7px; }
.solution-card li i { margin-top: 3px; color: #7df1db; }

.tracklink-section { background: #fff; }
.tracklink-card { display: grid; grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr); align-items: center; gap: 68px; padding: 64px; overflow: hidden; color: #fff; background: radial-gradient(circle at 94% 5%, rgba(45,212,191,.20), transparent 25rem), linear-gradient(135deg, #0b1d45, #1244a0); border-radius: var(--radius-xl); box-shadow: 0 38px 100px rgba(16, 42, 107, .25); }
.tracklink-copy h2 { font-size: clamp(36px, 4vw, 56px); }
.tracklink-copy p { margin: 20px 0 0; color: #c7d6f1; }
.tracklink-features { display: flex; flex-wrap: wrap; gap: 9px; margin: 25px 0; }
.tracklink-features span { display: inline-flex; align-items: center; gap: 7px; min-height: 34px; padding: 0 11px; color: #dce8ff; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.08); border-radius: 999px; font-size: 11px; font-weight: 750; }
.tracklink-features i { color: #72e7d1; }
.analytics-window { overflow: hidden; color: #dce8ff; border: 1px solid rgba(255,255,255,.15); background: rgba(4,14,35,.75); border-radius: 24px; box-shadow: 0 25px 65px rgba(0,0,0,.35); }
.analytics-window__bar { display: flex; align-items: center; gap: 7px; height: 48px; padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 11px; }
.analytics-window__bar i { width: 9px; height: 9px; background: #f87171; border-radius: 50%; }
.analytics-window__bar i:nth-child(2) { background: #fbbf24; }
.analytics-window__bar i:nth-child(3) { background: #4ade80; }
.analytics-window__bar span { margin-left: 7px; color: #9fb1d1; }
.analytics-window__body { padding: 22px; }
.analytics-link { display: flex; align-items: center; justify-content: center; height: 46px; color: #9fb1d1; border: 1px dashed rgba(114,231,209,.45); background: rgba(45,212,191,.06); border-radius: 13px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.analytics-link b { color: #72e7d1; }
.analytics-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 15px 0; }
.analytics-kpis article { padding: 13px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.05); border-radius: 13px; }
.analytics-kpis small { display: block; color: #8fa4c9; font-size: 9px; text-transform: uppercase; }
.analytics-kpis strong { display: block; margin-top: 4px; color: #fff; font-size: 16px; }
.analytics-chart { display: flex; align-items: end; gap: 8px; height: 120px; padding: 14px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.04); border-radius: 14px; }
.analytics-chart span { flex: 1; min-width: 8px; background: linear-gradient(to top, #2869e7, #72e7d1); border-radius: 4px 4px 0 0; opacity: .9; }
.analytics-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 3px; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 10px; }
.analytics-row i { color: #4ade80; }

.developer-grid { display: grid; grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr); gap: 22px; }
.endpoint-list { display: grid; gap: 10px; }
.endpoint-list article { display: grid; grid-template-columns: 60px 1fr; align-items: center; gap: 14px; min-height: 76px; padding: 13px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.055); border-radius: 17px; }
.endpoint-list div { display: flex; flex-direction: column; min-width: 0; }
.endpoint-list strong { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; overflow-wrap: anywhere; }
.endpoint-list small { margin-top: 4px; color: #91a6cb; }
.endpoint-method { display: grid; place-items: center; width: 58px; height: 32px; border-radius: 9px; font-size: 10px; font-weight: 900; }
.endpoint-method--post { color: #93c5fd; background: rgba(59,130,246,.15); }
.endpoint-method--get { color: #86efac; background: rgba(34,197,94,.13); }
.endpoint-method--smpp { color: #fcd34d; background: rgba(245,158,11,.14); }
.code-window { overflow: hidden; border: 1px solid rgba(255,255,255,.11); background: #050c1c; border-radius: 22px; box-shadow: 0 25px 60px rgba(0,0,0,.25); }
.code-window__bar { display: flex; align-items: center; justify-content: space-between; height: 52px; padding: 0 17px; color: #8fa4c9; border-bottom: 1px solid rgba(255,255,255,.08); background: #091329; font-size: 11px; }
.code-window__bar > span { display: flex; gap: 6px; }
.code-window__bar span i { width: 9px; height: 9px; background: #f87171; border-radius: 50%; }
.code-window__bar span i:nth-child(2) { background: #fbbf24; }
.code-window__bar span i:nth-child(3) { background: #4ade80; }
.code-window__bar button { padding: 6px 9px; color: #bcd0f5; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.06); border-radius: 8px; font-size: 10px; }
.code-window pre { min-height: 340px; margin: 0; padding: 25px; overflow: auto; color: #bfe1ff; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 12px; line-height: 1.75; tab-size: 4; }
.developer-notes { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.developer-notes > span { display: inline-flex; align-items: center; gap: 8px; min-height: 38px; padding: 0 12px; color: #a9bad8; border: 1px solid rgba(255,255,255,.09); background: rgba(255,255,255,.045); border-radius: 11px; font-size: 11px; }
.developer-notes i { color: #72e7d1; }
.developer-hub { margin-top: 45px; overflow: hidden; border: 1px solid rgba(255,255,255,.11); background: #050c1c; border-radius: 26px; box-shadow: 0 30px 70px rgba(0,0,0,.28); }
.developer-hub__intro { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 35px; padding: 28px; border-bottom: 1px solid rgba(255,255,255,.09); background: linear-gradient(135deg, rgba(21,94,239,.13), rgba(45,212,191,.05)); }
.developer-hub__eyebrow { display: inline-flex; align-items: center; gap: 8px; color: #72e7d1; font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.developer-hub__intro h3 { margin: 10px 0 7px; color: #fff; font-size: 24px; letter-spacing: -.035em; }
.developer-hub__intro p { max-width: 750px; margin: 0; color: #91a6cb; font-size: 12px; }
.developer-hub__intro code { color: #bfe1ff; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.developer-hub__response { display: flex; flex-direction: column; gap: 7px; max-width: 390px; padding: 13px; border: 1px solid rgba(74,222,128,.18); background: rgba(34,197,94,.07); border-radius: 13px; }
.developer-hub__response small { color: #86efac; font-size: 9px; font-weight: 850; text-transform: uppercase; }
.developer-hub__response code { color: #c9f7d8; font-size: 10px; overflow-wrap: anywhere; }
.language-tabs { display: flex; gap: 7px; padding: 16px 18px; overflow-x: auto; border-bottom: 1px solid rgba(255,255,255,.08); scrollbar-width: thin; }
.language-tabs button { display: inline-flex; align-items: center; gap: 7px; flex: 0 0 auto; min-height: 38px; padding: 0 12px; color: #8fa4c9; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.035); border-radius: 10px; font-size: 10px; font-weight: 800; }
.language-tabs button:hover { color: #fff; background: rgba(255,255,255,.07); }
.language-tabs button.is-active { color: #fff; border-color: rgba(91,140,255,.5); background: var(--brand); box-shadow: 0 10px 24px rgba(21,94,239,.23); }
.language-panes { min-height: 510px; }
.language-pane[hidden] { display: none; }
.language-pane__bar { display: flex; align-items: center; justify-content: space-between; min-height: 48px; padding: 0 20px; color: #c8d7f3; border-bottom: 1px solid rgba(255,255,255,.07); background: #091329; font-size: 11px; font-weight: 800; }
.language-pane__bar button { display: inline-flex; align-items: center; gap: 6px; min-height: 30px; padding: 0 10px; color: #bcd0f5; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.06); border-radius: 8px; font-size: 9px; font-weight: 800; }
.language-pane pre { min-height: 460px; max-height: 620px; margin: 0; padding: 25px; overflow: auto; color: #bfe1ff; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 12px; line-height: 1.72; tab-size: 2; }
.api-service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; padding: 18px; border-top: 1px solid rgba(255,255,255,.08); background: #071024; }
.api-service-cards article { display: grid; grid-template-columns: 38px 1fr; align-items: start; gap: 0 11px; padding: 16px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.035); border-radius: 14px; }
.api-service-card__icon { grid-row: span 2; display: grid; place-items: center; width: 38px; height: 38px; color: #72e7d1; background: rgba(45,212,191,.1); border-radius: 11px; }
.api-service-cards strong { color: #fff; font-size: 12px; }
.api-service-cards p { margin: 4px 0 12px; color: #8297bb; font-size: 10px; line-height: 1.55; }
.api-service-cards article > code { grid-column: 2; justify-self: start; padding: 5px 7px; color: #93c5fd; background: rgba(59,130,246,.1); border-radius: 7px; font-size: 9px; }
.developer-security-note { display: flex; align-items: flex-start; gap: 10px; padding: 17px 20px; color: #f8d991; border-top: 1px solid rgba(245,158,11,.16); background: rgba(245,158,11,.055); font-size: 10px; }
.developer-security-note > i { flex: 0 0 auto; margin-top: 2px; color: #fbbf24; }

.journey-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.journey-grid article { position: relative; min-height: 270px; padding: 24px; overflow: hidden; border: 1px solid var(--line); background: #fff; border-radius: 22px; }
.journey-grid article > span { position: absolute; top: 13px; inset-inline-end: 17px; color: #dbe5f4; font-size: 41px; font-weight: 900; line-height: 1; }
.journey-grid article > i { display: grid; place-items: center; width: 46px; height: 46px; color: var(--brand); background: #edf3ff; border-radius: 15px; font-size: 18px; }
.journey-grid h3 { margin: 54px 0 9px; font-size: 17px; }
.journey-grid p { margin: 0; color: var(--muted); font-size: 13px; }

.pricing-section { background: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 17px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; min-height: 420px; padding: 26px; border: 1px solid var(--line); background: #fff; border-radius: 24px; box-shadow: var(--shadow-soft); transition: transform .2s ease, box-shadow .2s ease; }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-card__head { display: flex; align-items: center; justify-content: space-between; gap: 9px; }
.price-name { color: var(--brand-dark); font-size: 13px; font-weight: 900; }
.price-badge { padding: 5px 8px; color: #166534; background: #dcfce7; border-radius: 999px; font-size: 9px; font-weight: 850; }
.price-sms { display: flex; align-items: baseline; gap: 7px; margin-top: 27px; font-size: 35px; line-height: 1; letter-spacing: -.04em; }
.price-sms small { color: var(--muted); font-size: 12px; letter-spacing: 0; }
.price-money { display: flex; align-items: baseline; gap: 6px; margin-top: 16px; color: var(--brand); }
.price-money bdi { font-size: 29px; font-weight: 900; }
.price-money span { font-size: 11px; font-weight: 750; }
.price-unit { margin-top: 5px; color: var(--muted); font-size: 10px; }
.price-card ul { display: grid; gap: 9px; margin: 24px 0; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; color: #475569; font-size: 12px; }
.price-card li { display: flex; align-items: center; gap: 8px; }
.price-card li i { color: var(--green); }
.price-card .button { margin-top: auto; }
.price-card--empty { grid-column: 1 / -1; align-items: center; justify-content: center; min-height: 260px; text-align: center; }
.price-card--empty > i { color: var(--brand); font-size: 40px; }
.price-card--empty h3 { margin: 15px 0 7px; }
.price-card--empty p { margin: 0; color: var(--muted); }

.industry-section { color: #fff; background: linear-gradient(140deg, #0b1e47, #102e70); }
.industry-grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(480px, 1.22fr); align-items: center; gap: 75px; }
.industry-grid h2 { margin-bottom: 20px; }
.industry-grid > div > p { color: #b6c6e3; }
.industry-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.industry-cards article { display: grid; grid-template-columns: 44px 1fr; align-items: center; gap: 0 13px; min-height: 100px; padding: 18px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.065); border-radius: 18px; }
.industry-cards i { grid-row: span 2; display: grid; place-items: center; width: 44px; height: 44px; color: #72e7d1; background: rgba(45,212,191,.1); border-radius: 14px; }
.industry-cards strong { font-size: 13px; }
.industry-cards small { color: #9db0d1; font-size: 9px; }

.payment-section .container { display: grid; grid-template-columns: minmax(0, .8fr) minmax(500px, 1.2fr); align-items: center; gap: 50px 80px; }
.payment-copy h2 { margin-bottom: 20px; }
.payment-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.payment-methods > span { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; min-height: 112px; color: #334155; border: 1px solid var(--line); background: #fff; border-radius: 19px; box-shadow: var(--shadow-soft); font-size: 12px; font-weight: 850; text-align: center; }
.payment-methods i { color: var(--brand); font-size: 24px; }
.bank-heading { grid-column: 1 / -1; display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-top: 40px; border-top: 1px solid var(--line); }
.bank-heading h3 { margin: 10px 0 0; font-size: 28px; letter-spacing: -.035em; }
.bank-heading p { display: inline-flex; align-items: center; gap: 7px; margin: 0; padding: 10px 13px; color: #166534; background: #dcfce7; border-radius: 12px; font-size: 12px; }
.bank-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.bank-card { padding: 25px; border: 1px solid var(--line); background: #fff; border-radius: 23px; box-shadow: var(--shadow-soft); }
.bank-card__head { display: flex; align-items: center; gap: 13px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.bank-logo { display: grid; place-items: center; width: 48px; height: 48px; color: #166534; background: #dcfce7; border-radius: 15px; font-size: 20px; }
.bank-logo--cib { color: #a16207; background: #fef3c7; }
.bank-card__head div { display: flex; flex-direction: column; }
.bank-card__head strong { font-size: 17px; }
.bank-card__head small { color: var(--muted); font-size: 10px; }
.bank-detail { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 5px 12px; padding: 17px 0; border-bottom: 1px solid #eef2f7; }
.bank-detail:last-child { border-bottom: 0; padding-bottom: 0; }
.bank-detail > span { color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.bank-detail bdi { grid-row: 2; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 14px; font-weight: 850; overflow-wrap: anywhere; }
.bank-detail button { grid-column: 2; grid-row: 1 / span 2; display: inline-flex; align-items: center; gap: 6px; min-height: 34px; padding: 0 10px; color: var(--brand); background: #edf3ff; border-radius: 10px; font-size: 10px; font-weight: 850; }
.bank-note { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 9px; margin: -20px 0 0; color: var(--muted); font-size: 11px; }
.bank-note i { margin-top: 3px; color: var(--brand); }

.faq-grid { display: grid; grid-template-columns: minmax(280px, .65fr) minmax(0, 1.35fr); align-items: start; gap: 75px; }
.faq-copy { position: sticky; top: 118px; }
.faq-copy p { margin: 18px 0 23px; color: var(--muted); }
.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--line); background: #fff; border-radius: 17px; }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 15px; min-height: 70px; padding: 18px 21px; cursor: pointer; list-style: none; font-size: 14px; font-weight: 850; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { color: var(--brand); transition: transform .2s ease; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 21px 20px; color: var(--muted); font-size: 13px; }

.contact-section { padding: 0 0 90px; background: #fff; }
.contact-card { display: flex; align-items: center; justify-content: space-between; gap: 60px; padding: 58px 62px; color: #fff; background: radial-gradient(circle at 80% 0, rgba(45,212,191,.22), transparent 20rem), linear-gradient(135deg, #0a2354, var(--brand)); border-radius: var(--radius-xl); box-shadow: 0 35px 90px rgba(21,94,239,.24); }
.contact-card > div:first-child { max-width: 720px; }
.contact-card h2 { font-size: clamp(35px, 4vw, 54px); }
.contact-card p { margin: 17px 0 0; color: #c8d7f3; }
.contact-actions { display: flex; flex-direction: column; gap: 10px; flex: 0 0 auto; }

.site-footer { color: #c6d3ea; background: #050c1d; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 55px; padding: 70px 0 45px; }
.brand--footer { color: #fff; }
.footer-brand p { max-width: 340px; margin: 20px 0 0; color: #7f93b7; font-size: 13px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid h3 { margin: 0 0 7px; color: #fff; font-size: 13px; }
.footer-grid > div:not(.footer-brand) a { color: #8ea2c5; font-size: 12px; }
.footer-grid > div:not(.footer-brand) a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; min-height: 75px; border-top: 1px solid rgba(255,255,255,.08); color: #657a9f; font-size: 11px; }
.footer-bottom button { display: inline-flex; align-items: center; gap: 7px; color: #a9bad8; background: transparent; font-size: 11px; }

.toast { position: fixed; z-index: 3000; inset-inline-start: 50%; bottom: 24px; transform: translate(-50%, 25px); max-width: min(440px, calc(100% - 30px)); padding: 12px 17px; opacity: 0; pointer-events: none; color: #fff; background: var(--navy); border: 1px solid rgba(255,255,255,.12); border-radius: 13px; box-shadow: 0 15px 40px rgba(0,0,0,.25); font-size: 12px; font-weight: 750; transition: opacity .2s ease, transform .2s ease; }
html[dir="rtl"] .toast { transform: translate(50%, 25px); }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
html[dir="rtl"] .toast.is-visible { transform: translate(50%, 0); }

@media (max-width: 1120px) {
    .main-nav { gap: 15px; }
    .main-nav > a:not(.button) { display: none; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: 850px; text-align: center; margin-inline: auto; }
    .hero h1, .hero-lead { margin-inline: auto; }
    .hero-actions, .hero-proof { justify-content: center; }
    .secure-access-shell { width: min(760px, 100%); margin-inline: auto; }
    .proof-grid { grid-template-columns: repeat(3, 1fr); }
    .proof-grid article:first-child { border-inline-start: 0; }
    .proof-grid article:nth-child(3) { border-inline-end: 0; }
    .proof-grid article:nth-child(n+4) { border-top: 1px solid var(--line); }
    .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .tracklink-card { grid-template-columns: 1fr; }
    .developer-grid { grid-template-columns: 1fr; }
    .developer-hub__intro { grid-template-columns: 1fr; align-items: start; }
    .developer-hub__response { max-width: none; }
    .api-service-cards { grid-template-columns: 1fr; }
    .journey-grid { grid-template-columns: repeat(3, 1fr); }
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
    .container { width: min(100% - 26px, var(--container)); }
    .header-inner { min-height: 70px; }
    .nav-toggle { display: grid; place-items: center; margin-inline-start: auto; }
    .main-nav { position: fixed; top: 76px; inset-inline: 13px; display: none; flex-direction: column; align-items: stretch; padding: 18px; border: 1px solid var(--line); background: #fff; border-radius: 20px; box-shadow: var(--shadow); }
    .main-nav.is-open { display: flex; }
    .main-nav > a:not(.button) { display: block; padding: 9px 4px; }
    .main-nav .button { width: 100%; }
    .language-switch { align-self: center; }
    .hero { padding-top: 52px; }
    .hero h1 { font-size: clamp(38px, 10vw, 58px); }
    .access-panel__body { grid-template-columns: 1fr; }
    .access-qr-column { width: min(310px, 100%); margin-inline: auto; }
    .proof-grid { grid-template-columns: repeat(2, 1fr); }
    .proof-grid article:nth-child(3) { border-inline-end: 1px solid var(--line); }
    .proof-grid article:nth-child(2n) { border-inline-end: 0; }
    .proof-grid article:nth-child(n+3) { border-top: 1px solid var(--line); }
    .section { padding: 75px 0; }
    .section-heading--split { grid-template-columns: 1fr; gap: 18px; }
    .tracklink-card { padding: 42px 28px; }
    .journey-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .industry-grid, .payment-section .container, .faq-grid { grid-template-columns: 1fr; gap: 45px; }
    .bank-heading, .bank-grid, .bank-note { grid-column: 1; }
    .faq-copy { position: static; }
    .contact-card { flex-direction: column; align-items: flex-start; padding: 44px 28px; }
    .contact-actions { width: 100%; flex-direction: row; }
    .contact-actions .button { flex: 1; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .brand-copy small { display: none; }
    .hero { padding-top: 40px; }
    .hero h1 { font-size: 39px; }
    .hero-lead { font-size: 15px; }
    .hero-actions .button { width: 100%; }
    .hero-proof { display: grid; grid-template-columns: 1fr; text-align: start; }
    .secure-access-shell { min-height: 660px; }
    .access-panel { padding: 20px; border-radius: 25px; }
    .access-panel__head { flex-direction: column; }
    .access-panel__head h2 { font-size: 22px; }
    .access-panel__body { gap: 22px; }
    .access-status { position: absolute; top: 20px; inset-inline-end: 20px; }
    .access-qr { width: 204px; height: 204px; }
    .access-qr img, .access-qr__placeholder { width: 178px; height: 178px; }
    .proof-grid { grid-template-columns: 1fr; }
    .proof-grid article { border-inline-end: 0 !important; border-top: 1px solid var(--line); }
    .proof-grid article:first-child { border-top: 0; }
    .section h2, .contact-card h2 { font-size: 35px; }
    .solutions-grid, .journey-grid, .pricing-grid, .industry-cards, .payment-methods, .bank-grid { grid-template-columns: 1fr; }
    .bank-heading { align-items: flex-start; flex-direction: column; }
    .solution-card { min-height: auto; }
    .tracklink-card { gap: 40px; padding: 34px 20px; border-radius: 25px; }
    .analytics-kpis { grid-template-columns: 1fr; }
    .analytics-chart { height: 90px; }
    .developer-grid { gap: 16px; }
    .endpoint-list article { grid-template-columns: 55px 1fr; }
    .code-window pre { min-height: 300px; padding: 18px; font-size: 10px; }
    .developer-hub { border-radius: 20px; }
    .developer-hub__intro { padding: 20px; }
    .developer-hub__intro h3 { font-size: 20px; }
    .language-pane pre { min-height: 420px; padding: 18px; font-size: 10px; }
    .payment-methods { grid-template-columns: repeat(2, 1fr); }
    .contact-actions { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 9px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
