/* === Master Team — multi-page site, light (default) + dark themes ===
   Brand: deep navy #071a45 / #0d2452 · indigo #344dff / #7d92ff · lime #a3d160 */
:root {
    --navy-900: #050f2b;
    --navy-800: #071a45;
    --navy-700: #0d2452;
    --navy-600: #1a3375;
    --indigo: #344dff;
    --indigo-strong: #2231cf;
    --indigo-soft: #7d92ff;
    --indigo-50: #eef1ff;
    --indigo-100: #cdd6ff;
    --lime: #a3d160;
    --lime-strong: #8ab944;
    --lime-ink: #3d5314;

    /* theme surfaces — LIGHT (default) */
    --bg: #ffffff;
    --bg-soft: #f6f8fd;
    --card: #ffffff;
    --ink: #0d1b3e;
    --gray: #55617d;
    --gray-light: #8a95ad;
    --border: #e3e8f4;
    --icon-tile: var(--indigo-50);
    --nav-bg: rgba(255, 255, 255, 0.88);
    --nav-ink: #0d1b3e;
    --nav-muted: #55617d;
    --nav-border: #e3e8f4;
    --logo-filter: none;

    --grad: linear-gradient(120deg, #344dff 0%, #7d92ff 100%);
    --grad-hero: radial-gradient(ellipse at 20% -10%, #1a3375 0%, #071a45 45%, #050f2b 100%);
    --shadow-sm: 0 2px 8px rgba(7, 26, 69, 0.05);
    --shadow: 0 10px 34px rgba(7, 26, 69, 0.09);
    --shadow-lg: 0 24px 64px rgba(7, 26, 69, 0.14);
    --shadow-indigo: 0 12px 36px rgba(52, 77, 255, 0.32);
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --container: 1200px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-ar: 'IBM Plex Sans Arabic', 'Inter', sans-serif;
}

[data-theme="dark"] {
    --bg: #050f2b;
    --bg-soft: #08173d;
    --card: #0d2452;
    --ink: #eef1fb;
    --gray: #b3bdd9;
    --gray-light: #7f8bb0;
    --border: rgba(125, 146, 255, 0.22);
    --icon-tile: rgba(125, 146, 255, 0.14);
    --nav-bg: rgba(5, 15, 43, 0.88);
    --nav-ink: #ffffff;
    --nav-muted: #b3bdd9;
    --nav-border: rgba(125, 146, 255, 0.2);
    --logo-filter: brightness(0) invert(1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow: 0 10px 34px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.45);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: background .25s ease, color .25s ease;
}
[dir="rtl"] body,
[dir="rtl"] button,
[dir="rtl"] input,
[dir="rtl"] select,
[dir="rtl"] textarea { font-family: var(--font-ar); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 26px;
    border-radius: 999px;
    font-weight: 600; font-size: 15px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--indigo); color: #fff; box-shadow: var(--shadow-indigo); }
.btn-primary:hover { background: var(--indigo-strong); transform: translateY(-2px); }
.btn-lime { background: var(--lime); color: var(--navy-800); box-shadow: 0 12px 32px rgba(163, 209, 96, .35); }
.btn-lime:hover { background: #b3dd74; transform: translateY(-2px); }
.btn-ghost { border-color: rgba(255,255,255,.35); color: #fff; background: rgba(255,255,255,.06); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.12); }
.btn-outline { border-color: var(--border); color: var(--ink); background: var(--card); }
.btn-outline:hover { border-color: var(--indigo); color: var(--indigo); }
.btn-sm { padding: 9px 20px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.navbar {
    position: fixed; inset-inline: 0; top: 0; z-index: 100;
    padding: 12px 0;
    background: var(--nav-bg);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--nav-border);
    transition: padding .25s ease, background .25s ease;
}
.navbar.scrolled { padding: 8px 0; box-shadow: var(--shadow-sm); }
.nav-container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { flex-shrink: 0; display: inline-flex; align-items: center; }
.navbar .logo-img { height: 34px; width: auto; max-width: none; filter: var(--logo-filter); }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
    color: var(--nav-muted); font-size: 15px; font-weight: 500;
    transition: color .15s ease;
}
.nav-links a:hover { color: var(--nav-ink); }
.nav-links a.active { color: var(--indigo); font-weight: 700; }
[data-theme="dark"] .nav-links a.active { color: var(--indigo-soft); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle, .theme-toggle {
    background: transparent; color: var(--nav-ink);
    border: 1px solid var(--nav-border);
    border-radius: 999px; padding: 8px 14px;
    font-size: 14px; font-weight: 600; cursor: pointer;
    transition: background .15s ease, border-color .15s ease;
}
.lang-toggle { font-family: var(--font-ar); }
.lang-toggle:hover, .theme-toggle:hover { border-color: var(--indigo); }
.theme-toggle { line-height: 1; padding: 8px 12px; }
.theme-toggle .tt-moon { display: inline; }
.theme-toggle .tt-sun { display: none; }
[data-theme="dark"] .theme-toggle .tt-moon { display: none; }
[data-theme="dark"] .theme-toggle .tt-sun { display: inline; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--nav-ink); margin: 5px 0; border-radius: 2px; }

/* ---------- Hero (home) ---------- */
.hero {
    position: relative;
    background: var(--grad-hero);
    color: #fff;
    padding: 150px 0 100px;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.orb-1 { width: 560px; height: 560px; background: #344dff; top: -180px; inset-inline-end: -120px; }
.orb-2 { width: 420px; height: 420px; background: #a3d160; opacity: .13; bottom: -220px; inset-inline-start: -140px; }
.hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at 50% 0%, black 30%, transparent 75%);
}
.hero-container { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.badge {
    display: inline-flex; align-items: center; gap: 9px;
    background: rgba(163, 209, 96, .12);
    border: 1px solid rgba(163, 209, 96, .4);
    color: #cbe89b;
    padding: 7px 16px; border-radius: 999px;
    font-size: 13.5px; font-weight: 600;
    margin-bottom: 24px;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(163,209,96,.22); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(163,209,96,.22);} 50% { box-shadow: 0 0 0 8px rgba(163,209,96,.08);} }
.hero-title { font-size: clamp(36px, 4.6vw, 54px); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 22px; }
.hero-title span { display: block; }
.gradient-text {
    background: linear-gradient(100deg, #7d92ff 5%, #a3d160 95%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-subtitle { font-size: 17.5px; color: #c9d1ec; max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 44px; margin-top: 48px; flex-wrap: wrap; }
.stat-value { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; }
.stat-value span { color: var(--lime); }
.stat-label { color: #97a3c8; font-size: 14px; margin-top: 2px; }

/* ---------- 3D product orbit (hero visual) ---------- */
.orbit-wrap {
    position: relative;
    height: 460px;
    perspective: 1100px;
    display: flex; align-items: center; justify-content: center;
}
.orbit-center {
    position: absolute; z-index: 2;
    width: 120px; height: 120px; border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #344dff, #071a45 75%);
    border: 1px solid rgba(125,146,255,.5);
    box-shadow: 0 0 60px rgba(52,77,255,.55), inset 0 0 30px rgba(125,146,255,.35);
    display: flex; align-items: center; justify-content: center;
    animation: centerGlow 4s ease-in-out infinite;
}
.orbit-center img { width: 56px; height: 56px; object-fit: contain; }
@keyframes centerGlow {
    0%,100% { box-shadow: 0 0 60px rgba(52,77,255,.55), inset 0 0 30px rgba(125,146,255,.35); }
    50% { box-shadow: 0 0 90px rgba(52,77,255,.8), inset 0 0 40px rgba(125,146,255,.5); }
}
.orbit {
    position: relative;
    width: 200px; height: 260px;
    transform-style: preserve-3d;
    animation: orbitSpin 36s linear infinite;
}
.orbit-wrap:hover .orbit { animation-play-state: paused; }
@keyframes orbitSpin {
    from { transform: rotateX(-8deg) rotateY(0deg); }
    to   { transform: rotateX(-8deg) rotateY(360deg); }
}
.orbit-card {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
    background: linear-gradient(160deg, rgba(13,36,82,.92), rgba(7,26,69,.88));
    border: 1px solid rgba(125,146,255,.35);
    border-radius: 20px;
    backface-visibility: hidden;
    box-shadow: 0 18px 50px rgba(0,0,0,.45);
}
.orbit-card img { width: 74px; height: 74px; object-fit: contain; }
.orbit-card span { font-size: 15px; font-weight: 700; color: #e6eaf9; }
.orbit-card em { font-style: normal; font-size: 10px; font-weight: 800; letter-spacing: .07em; color: var(--navy-800); background: var(--lime); padding: 2px 8px; border-radius: 6px; }
.orbit-card:nth-child(1) { transform: rotateY(0deg)   translateZ(var(--orbit-r, 280px)); }
.orbit-card:nth-child(2) { transform: rotateY(45deg)  translateZ(var(--orbit-r, 280px)); }
.orbit-card:nth-child(3) { transform: rotateY(90deg)  translateZ(var(--orbit-r, 280px)); }
.orbit-card:nth-child(4) { transform: rotateY(135deg) translateZ(var(--orbit-r, 280px)); }
.orbit-card:nth-child(5) { transform: rotateY(180deg) translateZ(var(--orbit-r, 280px)); }
.orbit-card:nth-child(6) { transform: rotateY(225deg) translateZ(var(--orbit-r, 280px)); }
.orbit-card:nth-child(7) { transform: rotateY(270deg) translateZ(var(--orbit-r, 280px)); }
.orbit-card:nth-child(8) { transform: rotateY(315deg) translateZ(var(--orbit-r, 280px)); }
.orbit-floor {
    position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
    width: 420px; height: 90px; border-radius: 50%;
    background: radial-gradient(ellipse, rgba(52,77,255,.28), transparent 70%);
    filter: blur(6px);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
    background: var(--grad-hero);
    color: #fff;
    padding: 140px 0 64px;
    position: relative; overflow: hidden;
}
.page-hero .hero-orb { opacity: .35; }
.page-hero .eyebrow { color: var(--lime); }
.page-hero h1 { font-size: clamp(32px, 4vw, 46px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 14px; position: relative; }
.page-hero p { color: #c9d1ec; font-size: 17px; max-width: 640px; position: relative; }

/* ---------- Trusted strip ---------- */
.trusted { background: var(--navy-900); padding: 30px 0 46px; color: #fff; }
.trusted-label { text-align: center; color: #97a3c8; font-size: 13.5px; letter-spacing: .04em; margin-bottom: 20px; }
.trusted-logos { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.trusted-logo {
    background: #fff;
    border-radius: 14px; padding: 10px 20px;
    display: flex; align-items: center; justify-content: center;
    min-width: 130px;
}
.trusted-logo img { height: 44px; width: auto; max-width: 150px; object-fit: contain; }

/* ---------- Sections base ---------- */
section { scroll-margin-top: 80px; }
.section-head { max-width: 760px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
    display: inline-block;
    color: var(--indigo); font-size: 13px; font-weight: 800; letter-spacing: .14em;
    margin-bottom: 14px;
}
[data-theme="dark"] .eyebrow { color: var(--indigo-soft); }
.eyebrow.light { color: var(--lime); }
.section-title { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; line-height: 1.18; letter-spacing: -0.02em; margin-bottom: 16px; }
.section-sub { color: var(--gray); font-size: 17px; }
.section-cta { text-align: center; margin-top: 44px; }

/* ---------- Products ---------- */
.products { padding: 96px 0; background: var(--bg-soft); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex; flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--indigo-100); }
[data-theme="dark"] .product-card:hover { border-color: rgba(125,146,255,.5); }
.product-card.featured {
    background: var(--grad-hero);
    color: #fff; border-color: var(--navy-600);
}
.product-card.featured p { color: #c9d1ec; }
.product-card.featured .product-role { color: var(--lime); }
.product-card.featured.alt { background: linear-gradient(140deg, #2231cf 0%, #071a45 80%); }
.product-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.product-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--icon-tile);
    display: flex; align-items: center; justify-content: center;
    font-size: 25px;
}
.product-icon.logo-img-box { background: #fff; border: 1px solid var(--border); padding: 8px; }
.product-icon.logo-img-box img { width: 100%; height: 100%; object-fit: contain; }
.product-icon.logo-img-box.dark { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
.product-card.featured .product-icon.logo-img-box:not(.dark) { background: rgba(255,255,255,.95); border-color: transparent; }
.product-tag {
    font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
    padding: 5px 11px; border-radius: 999px;
    background: var(--icon-tile); color: var(--indigo);
}
[data-theme="dark"] .product-tag { color: var(--indigo-soft); }
.product-tag.new { background: var(--lime); color: var(--lime-ink); }
.product-card h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 8px; }
.product-sub { display: block; font-size: 13.5px; font-weight: 600; color: var(--gray-light); margin-top: 2px; }
.product-card.featured .product-sub { color: #97a3c8; }
.product-role { font-weight: 700; font-size: 14.5px; margin-bottom: 8px; }
.product-card > p:not(.product-role) { color: var(--gray); font-size: 14.5px; flex: 1; }
.product-links { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.product-link { color: var(--indigo); font-weight: 700; font-size: 14.5px; }
[data-theme="dark"] .product-link { color: var(--indigo-soft); }
.product-card.featured .product-link { color: var(--lime); }
.product-link:hover { text-decoration: underline; }
.product-brochure {
    font-size: 13px; font-weight: 600; color: var(--gray-light);
    border: 1px solid var(--border); border-radius: 999px; padding: 5px 13px;
    transition: color .15s, border-color .15s;
}
.product-brochure:hover { color: var(--indigo); border-color: var(--indigo-100); }
.product-card.featured .product-brochure { color: #c9d1ec; border-color: rgba(255,255,255,.25); }
.product-card.featured .product-brochure:hover { color: #fff; border-color: rgba(255,255,255,.6); }

/* Home compact product tiles */
.product-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-tile {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 26px 20px; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--indigo-100); }
.product-tile img { height: 58px; width: auto; max-width: 90px; object-fit: contain; }
.product-tile b { font-size: 16px; font-weight: 800; }
.product-tile small { color: var(--gray); font-size: 13px; line-height: 1.45; }
.product-tile .product-tag.new { margin-top: 2px; }

/* ---------- Faris spotlight ---------- */
.faris { padding: 96px 0; background: var(--navy-900); }
.faris .section-title { color: #fff; }
.faris-card {
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
    color: #fff;
}
.faris-text > p { color: #c9d1ec; font-size: 16.5px; margin-bottom: 30px; }
.faris-steps { display: grid; gap: 16px; margin-bottom: 34px; }
.faris-step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
    font-size: 13px; font-weight: 800; color: var(--lime);
    border: 1px solid rgba(163,209,96,.4); border-radius: 10px;
    padding: 6px 10px; line-height: 1;
    flex-shrink: 0; margin-top: 3px;
}
.faris-step h4 { font-size: 16.5px; font-weight: 700; color: #fff; }
.faris-step p { color: #97a3c8; font-size: 14px; }

.chat-window {
    background: rgba(13, 36, 82, .75);
    border: 1px solid rgba(125,146,255,.28);
    border-radius: var(--radius-xl);
    padding: 22px;
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 90px rgba(0,0,0,.45);
    animation: floaty 8s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-12px);} }
.chat-head { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; color: #e6eaf9; margin-bottom: 18px; }
.chat-avatar {
    width: 34px; height: 34px; border-radius: 10px;
    background: var(--grad);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-ar); font-size: 16px; color: #fff;
}
.chat-msg { border-radius: 16px; padding: 13px 16px; font-size: 14px; margin-bottom: 12px; }
.chat-msg.user { background: var(--indigo); color: #fff; border-end-start-radius: 4px; max-width: 90%; }
.chat-msg.bot { background: rgba(7, 26, 69, .7); border: 1px solid rgba(125,146,255,.2); border-end-end-radius: 4px; color: #e6eaf9; }
.chat-bars { display: grid; gap: 8px; margin: 6px 0 12px; }
.cbar { display: flex; align-items: center; gap: 10px; }
.cbar i { display: block; height: 12px; border-radius: 999px; flex-basis: var(--w); background: linear-gradient(90deg, #344dff, #7d92ff); }
.cbar:first-child i { background: linear-gradient(90deg, #8ab944, #a3d160); }
.cbar b { font-size: 11.5px; color: #97a3c8; font-weight: 700; }
.chat-note { color: #c9d1ec; font-size: 13px; }

/* ---------- Services ---------- */
.services { padding: 96px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 30px;
    transition: transform .2s ease, box-shadow .2s ease;
    background: var(--card);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-num {
    font-size: 14px; font-weight: 800; color: var(--indigo);
    background: var(--icon-tile);
    display: inline-block; padding: 6px 12px; border-radius: 10px;
    margin-bottom: 18px;
}
[data-theme="dark"] .service-num { color: var(--indigo-soft); }
.service-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 15px; }
.service-card.highlight { background: var(--grad-hero); color: #fff; border-color: var(--navy-600); }
.service-card.highlight p { color: #c9d1ec; margin-bottom: 14px; }
.service-card.highlight .service-num { background: rgba(163,209,96,.15); color: var(--lime); }
.service-card.highlight .product-link { color: var(--lime); }

/* ---------- Capabilities ---------- */
.capabilities { padding: 96px 0; background: var(--bg-soft); }
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cap-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 24px;
    transition: border-color .2s, box-shadow .2s;
}
.cap-card:hover { border-color: var(--indigo-100); box-shadow: var(--shadow); }
.cap-icon { font-size: 26px; margin-bottom: 12px; }
.cap-card h4 { font-size: 16.5px; font-weight: 700; margin-bottom: 6px; }
.cap-card p { color: var(--gray); font-size: 14px; }

/* ---------- NCA compliance ---------- */
.nca { padding: 96px 0; }
.nca-wrap { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; }
.nca-badge-card {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl);
    padding: 44px; text-align: center;
    box-shadow: var(--shadow);
}
.nca-badge-card img { max-height: 170px; margin: 0 auto 18px; }
.nca-badge-card .nca-name { font-weight: 800; font-size: 17px; }
.nca-badge-card .nca-sub { color: var(--gray); font-size: 14px; }
.nca-points { display: grid; gap: 16px; margin-top: 28px; }
.nca-point {
    display: flex; gap: 16px; align-items: flex-start;
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 18px 20px;
}
.nca-point img { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }
.nca-point h4 { font-size: 16px; font-weight: 700; margin-bottom: 3px; }
.nca-point p { color: var(--gray); font-size: 14px; }

/* ---------- Hosting ---------- */
.hosting { padding: 96px 0; background: var(--bg-soft); }
.hosting-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hosting-card {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 30px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.hosting-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.hosting-card img { height: 52px; width: auto; margin-bottom: 18px; }
[data-theme="dark"] .hosting-card img,
[data-theme="dark"] .nca-point img { background: #fff; border-radius: 10px; padding: 6px; }
[data-theme="dark"] .nca-badge-card img { background: #fff; border-radius: 14px; padding: 12px; }
.hosting-kicker { color: var(--indigo); font-size: 12.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
[data-theme="dark"] .hosting-kicker { color: var(--indigo-soft); }
.hosting-card h3 { font-size: 19px; font-weight: 800; margin: 4px 0 10px; }
.hosting-card p { color: var(--gray); font-size: 14.5px; }

/* ---------- About ---------- */
.about { padding: 96px 0; }
.about-container { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.about-text > p { color: var(--gray); font-size: 16.5px; margin-bottom: 26px; }
.feature-list { list-style: none; display: grid; gap: 13px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; font-weight: 500; }
.check {
    width: 24px; height: 24px; flex-shrink: 0; border-radius: 8px;
    background: var(--lime); color: var(--lime-ink);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 800;
}
.about-visual { display: grid; gap: 18px; }
.about-stat-card {
    background: var(--bg-soft); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 26px 30px;
    display: flex; align-items: baseline; gap: 20px;
}
[data-theme="dark"] .about-stat-card { background: var(--card); }
.about-stat-card.alt { background: var(--grad-hero); color: #fff; border-color: var(--navy-600); transform: translateX(24px); }
[dir="rtl"] .about-stat-card.alt { transform: translateX(-24px); }
.about-stat-num { font-size: 40px; font-weight: 800; letter-spacing: -0.02em; }
.about-stat-num span { color: var(--indigo); }
[data-theme="dark"] .about-stat-num span { color: var(--indigo-soft); }
.about-stat-card.alt .about-stat-num span { color: var(--lime); }
.about-stat-label { font-size: 14.5px; color: var(--gray); }
.about-stat-card.alt .about-stat-label { color: #c9d1ec; }

/* ---------- Clients ---------- */
.clients { padding: 96px 0; background: var(--bg-soft); }
.client-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.client-logo {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 22px 16px;
    display: flex; align-items: center; justify-content: center;
    min-height: 110px;
    text-align: center; font-weight: 700; font-size: 15px; color: var(--navy-700);
    transition: border-color .2s, box-shadow .2s;
}
.client-logo:hover { border-color: var(--indigo-100); box-shadow: var(--shadow); }
.client-logo img { max-height: 64px; max-width: 85%; object-fit: contain; }
.client-logo.more { color: var(--gray-light); font-weight: 600; background: var(--card); }

/* ---------- CTA ---------- */
.cta { padding: 40px 0 96px; background: var(--bg-soft); }
.cta.on-white { background: var(--bg); }
.cta-card {
    position: relative; overflow: hidden;
    background: var(--grad-hero);
    border-radius: var(--radius-xl);
    padding: 70px 40px;
    text-align: center; color: #fff;
}
.cta-bg-orb {
    position: absolute; width: 500px; height: 500px; border-radius: 50%;
    background: #344dff; filter: blur(110px); opacity: .5;
    top: -240px; inset-inline-end: -120px;
}
.cta-card h2 { position: relative; font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; margin-bottom: 12px; }
.cta-card p { position: relative; color: #c9d1ec; font-size: 17px; margin-bottom: 30px; }
.cta-actions { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact { padding: 96px 0; }
.contact-container { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon {
    width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
    background: var(--icon-tile);
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.contact-label { font-size: 13px; font-weight: 700; letter-spacing: .05em; color: var(--gray-light); text-transform: uppercase; }
.contact-item a { color: var(--indigo); font-weight: 600; }
[data-theme="dark"] .contact-item a { color: var(--indigo-soft); }
.contact-item a:hover { text-decoration: underline; }
.contact-form {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 34px;
    box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.form-field input, .form-field select, .form-field textarea {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 11px;
    padding: 12px 14px;
    font-size: 15px; font-family: inherit; color: var(--ink);
    background: var(--bg-soft);
    transition: border-color .15s ease, background .15s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none; border-color: var(--indigo); background: var(--card);
}
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-status { margin-top: 14px; font-size: 14.5px; font-weight: 600; text-align: center; min-height: 22px; }
.form-status.ok { color: #3f8f27; }
[data-theme="dark"] .form-status.ok { color: var(--lime); }
.form-status.err { color: #d33c3c; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #c9d1ec; padding: 70px 0 0; }
.footer-container { display: grid; grid-template-columns: 1.4fr 1fr .8fr 1fr; gap: 44px; padding-bottom: 50px; }
.footer-brand .logo-img { height: 28px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 14.5px; color: #97a3c8; max-width: 300px; }
.mw-link { color: #c9d1ec; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.mw-link:hover { color: #fff; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a {
    width: 38px; height: 38px; border-radius: 11px;
    border: 1px solid rgba(125,146,255,.3);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px; color: #c9d1ec;
    transition: background .15s, color .15s;
}
.social-links a:hover { background: var(--indigo); color: #fff; border-color: var(--indigo); }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a, .footer-addr { display: block; color: #97a3c8; font-size: 14.5px; padding: 5px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(125,146,255,.15); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13.5px; color: #97a3c8; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-container, .faris-card, .about-container, .contact-container, .nca-wrap { grid-template-columns: 1fr; }
    .orbit-wrap { height: 420px; }
    .product-grid, .services-grid, .cap-grid, .hosting-grid { grid-template-columns: repeat(2, 1fr); }
    .product-tiles { grid-template-columns: repeat(2, 1fr); }
    .client-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .about-stat-card.alt, [dir="rtl"] .about-stat-card.alt { transform: none; }
}
@media (max-width: 680px) {
    .nav-links {
        position: fixed; top: 62px; inset-inline: 12px;
        background: var(--nav-bg);
        backdrop-filter: blur(14px);
        border: 1px solid var(--nav-border);
        border-radius: var(--radius-lg);
        flex-direction: column; gap: 4px; padding: 14px;
        display: none;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 11px 14px; border-radius: 10px; }
    .nav-links a:hover { background: var(--icon-tile); }
    .menu-toggle { display: block; }
    .nav-actions .btn { display: none; }
    .hero { padding: 120px 0 70px; }
    .hero-stats { gap: 28px; }
    .orbit-wrap { height: 360px; perspective: 900px; }
    .orbit { width: 160px; height: 210px; --orbit-r: 200px; }
    .orbit-card img { width: 56px; height: 56px; }
    .product-grid, .services-grid, .cap-grid, .hosting-grid, .form-row, .product-tiles { grid-template-columns: 1fr; }
    .client-grid { grid-template-columns: repeat(2, 1fr); }
    .products, .services, .capabilities, .about, .clients, .contact, .faris, .nca, .hosting { padding: 68px 0; }
    .page-hero { padding: 116px 0 50px; }
}
