:root {
  --primary: #0b58c4;
  --primary-700: #08459a;
  --primary-50: #eef5ff;
  --accent: #12a896;
  --accent-50: #e9fbf7;
  --ink: #0b1f35;
  --text: #31455a;
  --muted: #687b8e;
  --line: #dce6f0;
  --surface: #ffffff;
  --surface-soft: #f5f8fc;
  --surface-blue: #eef5ff;
  --warning: #a96300;
  --warning-bg: #fff5df;
  --success: #087b65;
  --success-bg: #e8faf5;
  --danger: #a72e35;
  --shadow-sm: 0 12px 28px rgba(11, 31, 53, .07);
  --shadow-md: 0 24px 60px rgba(11, 31, 53, .12);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --header: 78px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 18px); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--text);
  font-family: "IBM Plex Sans Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
.ltr-page { font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif; line-height: 1.65; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img, picture, svg { display: block; max-width: 100%; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.22; text-wrap: balance; }
p { text-wrap: pretty; }
ul, ol { padding-inline-start: 1.25rem; }
::selection { background: rgba(11, 88, 196, .18); color: var(--ink); }
:focus-visible { outline: 3px solid #f3b81d; outline-offset: 3px; }
.skip-link { position: fixed; inset-block-start: 8px; inset-inline-start: 12px; z-index: 9999; transform: translateY(-150%); padding: 10px 16px; border-radius: 12px; background: var(--ink); color: #fff; font-weight: 800; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding-block: 92px; }
.section-tight { padding-block: 44px; }
.soft-bg { background: var(--surface-soft); }
.blue-bg { background: var(--surface-blue); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; color: var(--primary); font-size: .79rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow::before { width: 24px; height: 2px; border-radius: 4px; background: currentColor; content: ""; }
.eyebrow.light { color: #bfe0ff; }
.section-head { max-width: 760px; margin-bottom: 42px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { margin-bottom: 14px; font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -.035em; }
.section-head p { margin-bottom: 0; color: var(--muted); font-size: 1.08rem; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

/* Header */
.site-header { position: sticky; inset-block-start: 0; z-index: 100; height: var(--header); border-bottom: 1px solid rgba(220, 230, 240, .8); background: rgba(255, 255, 255, .92); backdrop-filter: blur(18px); }
.nav-shell { display: flex; align-items: center; gap: 24px; height: 100%; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; }
.logo-crop { display: block; overflow: hidden; }
.logo-crop img { display: block; width: 100%; height: auto; }
.header-logo { width: 132px; height: 38px; }
.header-logo img { transform: translateY(-31px); }
.site-nav { display: flex; align-items: center; gap: 6px; margin-inline: auto; }
.site-nav a { position: relative; padding: 9px 10px; border-radius: 11px; color: #405469; font-size: .9rem; font-weight: 700; white-space: nowrap; transition: color .2s, background .2s; }
.site-nav a:hover, .site-nav a.active { background: var(--primary-50); color: var(--primary); }
.site-nav a.active::after { position: absolute; inset-inline: 25%; inset-block-end: 3px; height: 2px; border-radius: 5px; background: var(--primary); content: ""; }
.nav-actions { display: flex; align-items: center; gap: 9px; flex: 0 0 auto; }
.lang-link { display: inline-grid; min-width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); font-size: .82rem; font-weight: 800; }
.lang-link:hover { border-color: var(--primary); color: var(--primary); }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 1px solid var(--line); border-radius: 13px; background: #fff; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 3px; background: var(--ink); transition: transform .25s, opacity .2s; }

/* Buttons */
.btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 9px; padding: 11px 20px; border: 1px solid transparent; border-radius: 14px; cursor: pointer; font-weight: 800; line-height: 1.2; text-align: center; transition: transform .2s var(--ease), box-shadow .2s, background .2s, border-color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 11px 24px rgba(11, 88, 196, .23); }
.btn-primary:hover { background: var(--primary-700); box-shadow: 0 15px 30px rgba(11, 88, 196, .28); }
.btn-secondary { border-color: #bed0e4; background: #fff; color: var(--ink); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
.btn-ghost { background: transparent; color: var(--primary); }
.btn-whatsapp { background: #087c63; color: #fff; }
.btn-light { background: #fff; color: var(--primary-700); }
.btn-outline-light { border-color: rgba(255,255,255,.52); background: transparent; color: #fff; }
.btn-small { min-height: 42px; padding: 9px 15px; border-radius: 12px; font-size: .85rem; }
.btn-block { width: 100%; }
.btn[disabled] { cursor: not-allowed; opacity: .58; transform: none; }

/* Home hero */
.home-hero { position: relative; isolation: isolate; overflow: hidden; padding-block: 78px 70px; background: linear-gradient(145deg, #f8fbff 0%, #fff 48%, #eef7ff 100%); }
.home-hero::before { position: absolute; z-index: -1; inset: -20% auto auto -10%; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(18,168,150,.15), transparent 68%); content: ""; }
.home-hero::after { position: absolute; z-index: -1; inset: auto -9% -45% auto; width: 650px; height: 650px; border-radius: 50%; background: radial-gradient(circle, rgba(11,88,196,.16), transparent 67%); content: ""; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr); align-items: center; gap: clamp(40px, 7vw, 86px); }
.hero-copy h1 { max-width: 780px; margin-bottom: 22px; font-size: clamp(2.65rem, 5.7vw, 5.1rem); letter-spacing: -.052em; }
.hero-copy > p { max-width: 700px; margin-bottom: 28px; color: #53677b; font-size: clamp(1.05rem, 1.7vw, 1.27rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid rgba(190, 208, 228, .8); border-radius: 999px; background: rgba(255,255,255,.7); color: #41566b; font-size: .83rem; font-weight: 700; }
.hero-proof span::before { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); content: ""; }
.system-visual { position: relative; min-height: 500px; }
.visual-glow { position: absolute; inset: 12% 9%; border-radius: 50%; background: radial-gradient(circle, rgba(11,88,196,.25), rgba(18,168,150,.08) 48%, transparent 72%); filter: blur(22px); }
.ops-window { position: relative; z-index: 2; overflow: hidden; border: 1px solid rgba(255,255,255,.8); border-radius: 28px; background: rgba(255,255,255,.86); box-shadow: var(--shadow-md); backdrop-filter: blur(16px); transform: perspective(1100px) rotateY(-4deg) rotateX(2deg); }
[dir="ltr"] .ops-window { transform: perspective(1100px) rotateY(4deg) rotateX(2deg); }
.ops-bar { display: flex; align-items: center; gap: 7px; height: 48px; padding-inline: 18px; border-bottom: 1px solid var(--line); }
.ops-bar i { width: 9px; height: 9px; border-radius: 50%; background: #cbd8e5; }
.ops-bar span { width: 44%; height: 9px; margin-inline: auto; border-radius: 9px; background: #edf2f7; }
.ops-content { padding: 22px; }
.ops-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.ops-head strong { display: block; margin-bottom: 4px; color: var(--ink); font-size: 1.12rem; }
.ops-head small { color: var(--muted); }
.live-pill { padding: 6px 10px; border-radius: 999px; background: var(--success-bg); color: var(--success); font-size: .72rem; font-style: normal; font-weight: 800; }
.ops-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ops-metric { padding: 14px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.ops-metric b { display: block; margin-bottom: 8px; color: var(--ink); font-size: 1.35rem; }
.ops-metric span { color: var(--muted); font-size: .75rem; }
.ops-chart { position: relative; display: flex; align-items: end; gap: 8px; height: 150px; margin-top: 14px; padding: 24px 16px 14px; border-radius: 18px; background: linear-gradient(180deg, #f2f7ff, #fff); }
.ops-chart i { flex: 1; min-width: 10px; border-radius: 8px 8px 3px 3px; background: linear-gradient(180deg, var(--primary), #61a1ef); }
.ops-chart i:nth-child(1) { height: 39%; } .ops-chart i:nth-child(2) { height: 58%; } .ops-chart i:nth-child(3) { height: 48%; } .ops-chart i:nth-child(4) { height: 76%; } .ops-chart i:nth-child(5) { height: 65%; } .ops-chart i:nth-child(6) { height: 88%; }
.ops-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.ops-bottom div { display: flex; align-items: center; gap: 10px; padding: 12px; border-radius: 14px; background: var(--surface-soft); color: var(--text); font-size: .78rem; font-weight: 700; }
.ops-bottom b { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 10px; background: #fff; color: var(--primary); }
.float-chip { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; padding: 11px 14px; border: 1px solid rgba(255,255,255,.88); border-radius: 14px; background: rgba(255,255,255,.9); box-shadow: var(--shadow-sm); color: var(--ink); font-size: .77rem; font-weight: 800; backdrop-filter: blur(12px); }
.float-chip::before { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 9px; background: var(--primary-50); color: var(--primary); content: attr(data-icon); font-size: .62rem; }
.chip-one { inset-block-start: 9%; inset-inline-start: -8%; } .chip-two { inset-block-end: 9%; inset-inline-end: -6%; }

.proof-strip { border-block: 1px solid var(--line); background: #fff; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { padding: 28px 24px; border-inline-end: 1px solid var(--line); }
.proof-item:last-child { border-inline-end: 0; }
.proof-item strong { display: block; margin-bottom: 4px; color: var(--ink); font-size: 1.05rem; }
.proof-item span { color: var(--muted); font-size: .85rem; }

/* Shared cards */
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.card-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.surface-card { position: relative; overflow: hidden; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 10px 28px rgba(11,31,53,.045); transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.surface-card:hover { transform: translateY(-5px); border-color: #b9cde3; box-shadow: var(--shadow-sm); }
.card-icon { display: inline-grid; min-width: 46px; height: 46px; margin-bottom: 18px; padding-inline: 8px; place-items: center; border-radius: 14px; background: var(--primary-50); color: var(--primary); font-size: .74rem; font-weight: 900; letter-spacing: .03em; }
.surface-card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.surface-card p { margin-bottom: 18px; color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--primary); font-weight: 800; }
.text-link::after { content: "←"; }
[dir="ltr"] .text-link::after { content: "→"; }
.service-card .outcome { display: block; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); color: var(--ink); font-size: .86rem; font-weight: 700; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.product-card { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 24px; align-items: center; padding: 24px; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: var(--shadow-sm); }
.product-media { display: grid; min-height: 170px; place-items: center; overflow: hidden; border-radius: 20px; background: linear-gradient(145deg, #eef5ff, #f9fbfd); }
.product-media img { width: 100%; height: 160px; padding: 16px; object-fit: contain; }
.product-card h3 { margin: 10px 0 8px; font-size: 1.5rem; }
.product-card p { margin-bottom: 15px; color: var(--muted); }
.badge-row { display: flex; flex-wrap: wrap; gap: 7px; }
.badge { display: inline-flex; align-items: center; min-height: 27px; padding: 4px 9px; border-radius: 999px; background: var(--surface-soft); color: #53677b; font-size: .7rem; font-weight: 800; }
.badge.available { background: var(--success-bg); color: var(--success); }
.badge.soon { background: var(--warning-bg); color: var(--warning); }
.product-actions { display: flex; flex-wrap: wrap; gap: 8px; }

.work-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.work-card { overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow-sm); }
.work-image { display: grid; min-height: 280px; place-items: center; overflow: hidden; background: linear-gradient(145deg, #edf5ff, #f8fbff); }
.work-image img { width: 100%; height: 300px; padding: 18px; object-fit: contain; }
.work-content { padding: 28px; }
.work-content h3 { margin: 9px 0 12px; font-size: 1.55rem; }
.work-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-block: 20px; }
.work-points span { padding: 9px; border-radius: 10px; background: var(--surface-soft); color: var(--ink); font-size: .75rem; font-weight: 700; text-align: center; }

.process-grid { display: grid; grid-template-columns: repeat(7, minmax(120px, 1fr)); gap: 12px; }
.process-step { position: relative; min-height: 175px; padding: 22px 17px; border: 1px solid var(--line); border-radius: 19px; background: #fff; }
.process-step::after { position: absolute; inset-block-start: 44px; inset-inline-end: -18px; width: 24px; height: 2px; background: #b9cce1; content: ""; }
.process-step:last-child::after { display: none; }
.process-step b { display: grid; width: 36px; height: 36px; margin-bottom: 16px; place-items: center; border-radius: 12px; background: var(--primary); color: #fff; font-size: .76rem; }
.process-step h3 { margin-bottom: 7px; font-size: 1rem; }
.process-step p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.55; }

.why-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.why-list { display: grid; gap: 12px; }
.why-item { display: flex; gap: 15px; padding: 17px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.why-item b { display: grid; flex: 0 0 38px; width: 38px; height: 38px; place-items: center; border-radius: 12px; background: var(--accent-50); color: var(--accent); font-size: .72rem; }
.why-item h3 { margin-bottom: 4px; font-size: 1rem; }
.why-item p { margin: 0; color: var(--muted); font-size: .84rem; }
.featured-panel { overflow: hidden; padding: 32px; border-radius: 30px; background: linear-gradient(145deg, #071c38, #0b58c4); color: #fff; box-shadow: var(--shadow-md); }
.featured-panel h2, .featured-panel h3 { color: #fff; }
.featured-panel p { color: #dcecff; }
.featured-panel img { width: 100%; max-height: 300px; margin-top: 24px; border-radius: 20px; background: #fff; object-fit: contain; }

.insight-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.insight-card { display: flex; min-height: 260px; flex-direction: column; padding: 25px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.insight-card .meta { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 26px; color: var(--muted); font-size: .75rem; font-weight: 700; }
.insight-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.insight-card p { color: var(--muted); }
.insight-card .text-link { margin-top: auto; }

.faq-list { display: grid; max-width: 900px; gap: 12px; margin-inline: auto; }
.faq-list details { border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.faq-list summary { position: relative; padding: 20px 54px 20px 20px; color: var(--ink); cursor: pointer; font-weight: 800; list-style: none; }
[dir="ltr"] .faq-list summary { padding: 20px 20px 20px 54px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; inset-block-start: 17px; inset-inline-end: 18px; display: grid; width: 32px; height: 32px; place-items: center; border-radius: 10px; background: var(--primary-50); color: var(--primary); content: "+"; font-size: 1.2rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 20px 20px; color: var(--muted); }

/* Internal pages */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding-block: 18px; color: var(--muted); font-size: .82rem; }
.breadcrumb a:hover { color: var(--primary); }
.crumb-sep { opacity: .55; }
.inner-hero { position: relative; overflow: hidden; padding-block: 74px; background: linear-gradient(145deg, #f4f8fd, #fff 55%, #edf5ff); }
.inner-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr); gap: 58px; align-items: center; }
.inner-copy h1 { max-width: 850px; margin-bottom: 20px; font-size: clamp(2.45rem, 5vw, 4.7rem); letter-spacing: -.045em; }
.inner-copy > p { max-width: 760px; margin-bottom: 26px; color: var(--muted); font-size: 1.15rem; }
.inner-visual { display: grid; min-height: 320px; place-items: center; padding: 24px; border: 1px solid rgba(190,208,228,.8); border-radius: 28px; background: rgba(255,255,255,.8); box-shadow: var(--shadow-md); }
.inner-visual img { max-height: 310px; object-fit: contain; }
.symbol-visual { position: relative; width: min(100%, 380px); aspect-ratio: 1; }
.symbol-core { position: absolute; inset: 31%; display: grid; place-items: center; border-radius: 26px; background: var(--primary); box-shadow: 0 20px 40px rgba(11,88,196,.28); color: #fff; font-size: 1.45rem; font-weight: 900; }
.symbol-node { position: absolute; display: grid; width: 92px; height: 66px; place-items: center; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow-sm); color: var(--ink); font-size: .74rem; font-weight: 800; text-align: center; }
.symbol-node::after { position: absolute; z-index: -1; width: 75px; height: 2px; background: #b7cbe1; content: ""; }
.symbol-node.n1 { inset: 4% auto auto 34%; } .symbol-node.n1::after { transform: translateY(54px) rotate(90deg); }
.symbol-node.n2 { inset: 40% 1% auto auto; } .symbol-node.n2::after { transform: translateX(-65px); }
.symbol-node.n3 { inset: auto auto 4% 34%; } .symbol-node.n3::after { transform: translateY(-54px) rotate(90deg); }
.symbol-node.n4 { inset: 40% auto auto 1%; } .symbol-node.n4::after { transform: translateX(65px); }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr); gap: 48px; align-items: start; }
.content-copy h2 { margin-bottom: 16px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.content-copy p { color: var(--text); }
.sticky-panel { position: sticky; inset-block-start: calc(var(--header) + 24px); padding: 25px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface-soft); }
.sticky-panel h3 { margin-bottom: 15px; }
.check-list { display: grid; gap: 10px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-inline-start: 27px; }
.check-list li::before { position: absolute; inset-block-start: .35em; inset-inline-start: 0; display: grid; width: 19px; height: 19px; place-items: center; border-radius: 7px; background: var(--success-bg); color: var(--success); content: "✓"; font-size: .7rem; font-weight: 900; }
.problem-result { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.problem-result article { padding: 27px; border-radius: 22px; }
.problem-result article:first-child { border: 1px solid #f0d8ad; background: #fffaf0; }
.problem-result article:last-child { border: 1px solid #bfe7db; background: #effbf7; }
.problem-result h3 { margin-bottom: 10px; }
.problem-result p { margin: 0; }
.deliverable-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: deliverable; }
.deliverable { counter-increment: deliverable; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; color: var(--ink); font-weight: 700; }
.deliverable::before { display: block; margin-bottom: 12px; color: var(--primary); content: counter(deliverable, decimal-leading-zero); font-size: .75rem; font-weight: 900; }
.timeline { position: relative; display: grid; gap: 14px; max-width: 900px; margin-inline: auto; }
.timeline::before { position: absolute; inset-block: 25px; inset-inline-start: 29px; width: 2px; background: var(--line); content: ""; }
.timeline article { position: relative; display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.timeline b { z-index: 1; display: grid; width: 38px; height: 38px; place-items: center; border-radius: 12px; background: var(--primary); color: #fff; }
.timeline h3 { margin: 2px 0 5px; }
.timeline p { margin: 0; color: var(--muted); }

.industry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.industry-card { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 27px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.industry-card .card-icon { margin: 0; }
.industry-card h3 { margin-bottom: 8px; }
.industry-card p { margin-bottom: 14px; color: var(--muted); }
.industry-card ul { margin-bottom: 18px; }

/* Product pages and gallery */
.platform-row { display: flex; flex-wrap: wrap; gap: 9px; margin-block: 22px; }
.platform-row span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink); font-size: .79rem; font-weight: 800; }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 17px; }
.feature-card { padding: 23px; border: 1px solid var(--line); border-radius: 19px; background: #fff; }
.feature-card h3 { margin-bottom: 8px; font-size: 1.06rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.screenshot-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.screenshot-card { overflow: hidden; padding: 0; border: 1px solid var(--line); border-radius: 19px; background: #fff; cursor: zoom-in; text-align: start; }
.screenshot-frame { display: grid; aspect-ratio: 16/10; place-items: center; overflow: hidden; background: #eef3f8; }
.screenshot-frame img { width: 100%; height: 100%; object-fit: contain; }
.screenshot-card h3 { margin: 16px 17px 4px; font-size: 1rem; }
.screenshot-card p { margin: 0 17px 18px; color: var(--muted); font-size: .8rem; }
.lightbox { position: fixed; z-index: 1000; inset: 0; display: none; place-items: center; padding: 24px; background: rgba(3, 13, 25, .88); }
.lightbox.open { display: grid; }
.lightbox-dialog { position: relative; width: min(1120px, 100%); max-height: calc(100vh - 48px); overflow: auto; border-radius: 22px; background: #fff; }
.lightbox-dialog img { width: 100%; max-height: 76vh; object-fit: contain; background: #eff3f7; }
.lightbox-copy { padding: 19px 22px; }
.lightbox-copy strong { display: block; margin-bottom: 4px; color: var(--ink); }
.lightbox-copy p { margin: 0; color: var(--muted); }
.lightbox-close { position: fixed; z-index: 2; inset-block-start: 18px; inset-inline-end: 18px; display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 14px; background: rgba(0,0,0,.45); color: #fff; cursor: pointer; font-size: 1.6rem; }

/* Downloads */
.download-list { display: grid; gap: 22px; }
.download-item { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 28px; padding: 27px; border: 1px solid var(--line); border-radius: 25px; background: #fff; box-shadow: var(--shadow-sm); }
.download-logo { display: grid; min-height: 150px; place-items: center; border-radius: 18px; background: var(--surface-soft); }
.download-logo img { width: 100%; max-height: 140px; padding: 15px; object-fit: contain; }
.download-item h2 { margin: 6px 0 14px; }
.download-table { width: 100%; margin-block: 17px; border-collapse: collapse; font-size: .84rem; }
.download-table th, .download-table td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: start; }
.download-table th { width: 150px; color: var(--muted); font-weight: 700; }
.download-notice { padding: 13px 15px; border: 1px solid #f0d8ad; border-radius: 13px; background: #fffaf0; color: #765019; font-size: .8rem; }

/* Forms */
.form-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 28px; align-items: start; }
.project-form { padding: 30px; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: var(--shadow-sm); }
.form-section + .form-section { margin-top: 28px; padding-top: 25px; border-top: 1px solid var(--line); }
.form-section h2 { margin-bottom: 17px; font-size: 1.25rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label, .field > span { color: var(--ink); font-size: .84rem; font-weight: 800; }
.field small { color: var(--muted); font-size: .74rem; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; border: 1px solid #c9d7e5; border-radius: 13px; background: #fff; color: var(--ink); padding: 11px 13px; transition: border-color .2s, box-shadow .2s; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); outline: 0; box-shadow: 0 0 0 4px rgba(11,88,196,.11); }
.field [aria-invalid="true"] { border-color: var(--danger); }
.check-group { display: flex; flex-wrap: wrap; gap: 10px; }
.check-option { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-soft); color: var(--ink); cursor: pointer; font-size: .82rem; font-weight: 700; }
.check-option input { width: 18px; height: 18px; accent-color: var(--primary); }
.honeypot { position: absolute !important; inset-inline-start: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.form-status { display: none; margin-top: 17px; padding: 15px; border-radius: 14px; font-weight: 700; }
.form-status.show { display: block; }
.form-status.success { background: var(--success-bg); color: var(--success); }
.form-status.warning { background: var(--warning-bg); color: #765019; }
.form-status.error { background: #ffedef; color: var(--danger); }
.form-fallback-actions { display: none; flex-wrap: wrap; gap: 9px; margin-top: 13px; }
.form-fallback-actions.show { display: flex; }
.form-side { display: grid; gap: 16px; }
.info-card { padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface-soft); }
.info-card h2, .info-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.info-card p, .info-card li { color: var(--muted); font-size: .84rem; }
.info-card ul { margin-bottom: 0; }

/* Articles and legal */
.article-shell { display: grid; grid-template-columns: minmax(0, 760px) 260px; justify-content: center; gap: 46px; }
.article-content { min-width: 0; }
.article-content h2 { margin-top: 44px; margin-bottom: 13px; font-size: 1.75rem; }
.article-content h3 { margin-top: 30px; }
.article-content p, .article-content li { font-size: 1.02rem; line-height: 1.95; }
.article-lead { color: var(--muted); font-size: 1.16rem !important; }
.article-aside { position: sticky; inset-block-start: calc(var(--header) + 24px); align-self: start; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface-soft); }
.article-aside strong { display: block; margin-bottom: 10px; color: var(--ink); }
.article-aside a { display: block; padding-block: 7px; color: var(--primary); font-size: .82rem; font-weight: 700; }
.legal-content { max-width: 880px; margin-inline: auto; }
.legal-content h2 { margin-top: 38px; font-size: 1.45rem; }
.legal-content h3 { margin-top: 26px; font-size: 1.12rem; }
.legal-content p, .legal-content li { line-height: 1.9; }
.legal-date { display: inline-flex; margin-bottom: 24px; padding: 7px 11px; border-radius: 999px; background: var(--surface-soft); color: var(--muted); font-size: .78rem; font-weight: 700; }
.callout { margin-block: 24px; padding: 18px 20px; border-inline-start: 4px solid var(--primary); border-radius: 14px; background: var(--primary-50); color: var(--ink); }

/* CTA and footer */
.section-cta { padding-block: 62px; }
.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 34px; padding: 42px; border-radius: 30px; background: linear-gradient(135deg, #071c38, #0b58c4 70%, #117bba); box-shadow: var(--shadow-md); }
.cta-panel h2 { margin-bottom: 11px; color: #fff; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.cta-panel p { max-width: 700px; margin: 0; color: #d8e9fb; }
.cta-actions { display: flex; flex: 0 0 auto; flex-wrap: wrap; gap: 10px; }
.footer { border-top: 1px solid var(--line); background: #07182c; color: #b8c8d7; }
.footer-main { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 36px; padding-block: 62px 45px; }
.footer h2 { margin-bottom: 16px; color: #fff; font-size: .97rem; }
.footer a { display: block; width: fit-content; padding-block: 5px; color: #b8c8d7; font-size: .85rem; }
.footer a:hover { color: #fff; }
.footer-logo { width: 160px; height: 46px; margin-bottom: 16px; border-radius: 12px; background: #fff; }
.footer-logo img { transform: translateY(-38px); }
.footer-brand p { max-width: 360px; color: #b8c8d7; font-size: .9rem; }
.footer-contact { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #8fa4b7; font-size: .78rem; }
.ai-launch { position: fixed; z-index: 90; inset-inline-end: 18px; inset-block-end: 18px; display: flex; align-items: center; gap: 9px; min-height: 50px; padding: 7px 15px 7px 8px; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; background: #09284d; box-shadow: 0 16px 38px rgba(4,25,50,.28); color: #fff; cursor: pointer; }
[dir="rtl"] .ai-launch { padding: 7px 8px 7px 15px; }
.ai-launch span { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; background: linear-gradient(145deg, #168ff2, #12a896); font-size: .7rem; font-weight: 900; }
.ai-launch strong { font-size: .77rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1120px) {
  .nav-shell { gap: 14px; }
  .site-nav { gap: 1px; }
  .site-nav a { padding-inline: 7px; font-size: .82rem; }
  .nav-actions .btn { display: none; }
  .hero-grid { grid-template-columns: 1fr 430px; gap: 38px; }
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .process-step:nth-child(4)::after { display: none; }
  .footer-main { grid-template-columns: 1.4fr repeat(2, 1fr); }
}

@media (max-width: 920px) {
  :root { --header: 70px; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding-block: 74px; }
  .nav-toggle { display: block; margin-inline-start: auto; }
  .nav-actions { order: 3; }
  .site-nav { position: fixed; inset: var(--header) 0 auto; display: grid; max-height: calc(100vh - var(--header)); gap: 3px; overflow: auto; padding: 18px 20px 26px; border-bottom: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transform: translateY(-14px); transition: opacity .22s, transform .22s; }
  .site-nav a { padding: 13px 14px; font-size: .96rem; }
  .site-nav a.active::after { display: none; }
  .menu-open .site-nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid, .inner-hero-grid, .why-grid, .content-grid, .form-layout { grid-template-columns: 1fr; }
  .home-hero { padding-block-start: 60px; }
  .hero-copy { text-align: center; }
  .hero-copy h1, .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .system-visual { width: min(100%, 560px); min-height: 460px; margin-inline: auto; }
  .ops-window { transform: none; }
  [dir="ltr"] .ops-window { transform: none; }
  .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .product-card { grid-template-columns: 145px 1fr; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-step::after { display: none; }
  .inner-hero-grid { gap: 32px; }
  .inner-visual { width: min(100%, 600px); margin-inline: auto; }
  .sticky-panel, .article-aside { position: static; }
  .article-shell { grid-template-columns: minmax(0, 760px); }
  .article-aside { display: none; }
  .cta-panel { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding-block: 60px; }
  .header-logo { width: 116px; height: 34px; }
  .header-logo img { transform: translateY(-28px); }
  .lang-link { min-width: 38px; height: 40px; }
  .nav-toggle { width: 42px; height: 42px; }
  .hero-copy h1 { font-size: clamp(2.35rem, 11.5vw, 3.6rem); }
  .hero-actions .btn { width: 100%; }
  .system-visual { min-height: 390px; }
  .ops-content { padding: 15px; }
  .ops-metrics { gap: 6px; }
  .ops-metric { padding: 10px; }
  .ops-metric b { font-size: 1.08rem; }
  .ops-chart { height: 120px; }
  .float-chip { display: none; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item { padding: 20px 16px; border-bottom: 1px solid var(--line); }
  .proof-item:nth-child(2) { border-inline-end: 0; }
  .proof-item:nth-last-child(-n+2) { border-bottom: 0; }
  .card-grid, .card-grid.cols-4, .product-grid, .work-grid, .insight-grid, .industry-grid, .feature-grid, .screenshot-grid, .deliverable-grid, .problem-result { grid-template-columns: 1fr; }
  .product-card, .download-item { grid-template-columns: 1fr; }
  .product-media, .download-logo { min-height: 145px; }
  .work-points { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .inner-hero { padding-block: 54px; }
  .inner-copy h1 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .inner-visual { min-height: 270px; padding: 15px; }
  .symbol-visual { max-width: 310px; }
  .symbol-node { width: 78px; height: 58px; font-size: .65rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .project-form { padding: 20px; }
  .download-table th { width: 115px; }
  .cta-panel { padding: 29px 22px; }
  .cta-actions, .cta-actions .btn { width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .ai-launch { inset-inline-end: 12px; inset-block-end: 12px; }
  .ai-launch strong { display: none; }
  .ai-launch { padding: 7px; }
}

@media (max-width: 400px) {
  .hero-proof { align-items: stretch; flex-direction: column; }
  .hero-proof span { justify-content: center; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { border-inline-end: 0; border-bottom: 1px solid var(--line) !important; }
  .proof-item:last-child { border-bottom: 0 !important; }
  .process-grid { grid-template-columns: 1fr; }
  .ops-bottom { grid-template-columns: 1fr; }
  .ops-head small { display: none; }
  .download-table, .download-table tbody, .download-table tr, .download-table th, .download-table td { display: block; width: 100%; }
  .download-table th { padding-bottom: 2px; border-bottom: 0; }
  .download-table td { padding-top: 2px; }
}

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

@media print {
  .site-header, .footer, .ai-launch, .hero-actions, .cta-panel, .nav-toggle { display: none !important; }
  body { color: #000; }
  .section, .inner-hero { padding-block: 24px; }
  .surface-card, .download-item, .project-form { break-inside: avoid; box-shadow: none; }
}
