:root {
  --ink: #0b1115;
  --ink2: #111b22;
  --panel: #16232c;
  --line: #2b3a44;
  --white: #eef4f7;
  --muted: #9babb4;
  --cyan: #28b7cc;
  --amber: #f1a63a;
  --max: 1200px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font:
    16px/1.6 Arial,
    "Helvetica Neue",
    sans-serif;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background: linear-gradient(
    90deg,
    transparent 49.8%,
    #23333c 50%,
    transparent 50.2%
  );
  background-size: 160px 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
}
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}
.wrap {
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
}
.topbar {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
}
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 17, 21, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-row {
  height: 80px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo {
  width: 190px;
  height: 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav {
  margin-left: auto;
  display: flex;
  gap: 28px;
}
.nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav a:hover,
.nav a.active {
  color: var(--cyan);
}
.language,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.language {
  color: var(--amber);
}
.button {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #071014;
}
.button.alt {
  background: transparent;
  border-color: var(--line);
  color: var(--white);
}
.menu {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: none;
  color: white;
}
.hero {
  min-height: 640px;
  display: grid;
  align-items: center;
  padding: 88px 0;
  background: radial-gradient(
    circle at 78% 45%,
    rgba(40, 183, 204, 0.11),
    transparent 28%
  );
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 68px;
  align-items: center;
}
.kicker {
  color: var(--cyan);
  font:
    700 11px/1.2 ui-monospace,
    monospace;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.kicker:before {
  content: "// ";
  color: var(--amber);
}
h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin-top: 0;
}
h1 {
  font-size: clamp(3.4rem, 7vw, 6.7rem);
  margin: 20px 0 24px;
}
h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  margin-bottom: 22px;
}
h3 {
  font-size: 1.35rem;
}
.hero p,
.lede {
  color: var(--muted);
  font-size: 18px;
  max-width: 700px;
}
.actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  border: 1px solid var(--line);
  padding: 14px;
  background: var(--panel);
}
.hero-visual:before {
  content: "PRODUCT SYSTEM / FBC + CTE";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 14px;
  z-index: 2;
  padding: 11px;
  background: rgba(11, 17, 21, 0.88);
  font:
    700 10px ui-monospace,
    monospace;
  letter-spacing: 0.12em;
}
.hero-visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: 50% 22%;
  filter: saturate(0.75) contrast(1.05);
}
.data-strip {
  border-block: 1px solid var(--line);
  background: var(--ink2);
}
.data-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.datum {
  padding: 25px;
  border-right: 1px solid var(--line);
}
.datum:last-child {
  border: 0;
}
.datum b {
  display: block;
  color: var(--amber);
  font-size: 23px;
}
.datum span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.section {
  padding: 105px 0;
  border-bottom: 1px solid var(--line);
}
.section.alt {
  background: var(--ink2);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 55px;
}
.section-head p {
  color: var(--muted);
  margin: 0;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.card {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(22, 35, 44, 0.65);
}
.card .num {
  font:
    700 11px ui-monospace,
    monospace;
  color: var(--cyan);
}
.card h3 {
  margin-top: 55px;
}
.card p {
  color: var(--muted);
  font-size: 14px;
}
.card a {
  color: var(--amber);
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.page-hero {
  padding: 95px 0 65px;
  border-bottom: 1px solid var(--line);
  background: var(--ink2);
}
.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5.7rem);
  max-width: 950px;
}
.crumb {
  font:
    700 11px ui-monospace,
    monospace;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.crumb b {
  color: var(--cyan);
}
.products {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.product {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  background: var(--ink);
}
.product:nth-child(even) {
  grid-template-columns: 1.18fr 0.82fr;
}
.product:nth-child(even) .product-img {
  order: 2;
}
.product-img {
  min-height: 440px;
  overflow: hidden;
  background: var(--panel);
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-img.catalogue img {
  object-position: 50% 34%;
}
.product-img.pads img {
  object-position: 44% 68%;
}
.product-copy {
  padding: 52px;
}
.tag {
  color: var(--cyan);
  font:
    700 11px ui-monospace,
    monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.product-copy ul {
  padding-left: 18px;
  color: var(--muted);
}
.product-copy li {
  margin: 7px 0;
}
.specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.spec {
  padding: 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spec small {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.body-copy p {
  color: var(--muted);
}
.timeline {
  border-top: 1px solid var(--line);
}
.timeline div {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
}
.timeline b {
  color: var(--amber);
  font-family: ui-monospace, monospace;
}
.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.partner-card {
  padding: 45px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.partner-mark {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: -0.07em;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}
.contact-panel {
  border: 1px solid var(--line);
  background: var(--panel);
}
.row {
  display: grid;
  grid-template-columns: 150px 1fr;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}
.row:last-child {
  border: 0;
}
.row span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.placeholder {
  color: var(--amber);
}
.footer {
  padding: 32px 0;
  color: var(--muted);
  font-size: 12px;
}
.footer .wrap {
  display: flex;
  justify-content: space-between;
}
.rtl {
  direction: rtl;
  text-align: right;
}
.rtl .nav {
  margin-left: 0;
  margin-right: auto;
}
.rtl .kicker:before {
  content: "// ";
}
.rtl .product-copy ul {
  padding-left: 0;
  padding-right: 18px;
}
.rtl .product:nth-child(even) .product-img {
  order: 0;
}
.rtl .product:nth-child(even) .product-copy {
  order: 2;
}
.rtl .row {
  grid-template-columns: 1fr 150px;
}
.rtl .timeline div {
  grid-template-columns: 1fr 60px;
}
.rtl .timeline div b {
  order: 2;
}
@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    margin: 0 !important;
    padding: 24px;
    background: var(--ink2);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
  }
  .nav.open {
    display: flex;
  }
  .header .button {
    display: none;
  }
  .menu {
    display: block;
  }
  .hero-grid,
  .section-head,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual img {
    height: 360px;
  }
  .grid3 {
    grid-template-columns: 1fr 1fr;
  }
  .product,
  .product:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .product:nth-child(even) .product-img,
  .rtl .product:nth-child(even) .product-copy {
    order: 0;
  }
  .product-img {
    min-height: 360px;
  }
  .data-grid {
    grid-template-columns: 1fr 1fr;
  }
  .partners-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .wrap {
    width: min(calc(100% - 30px), var(--max));
  }
  .topbar {
    display: none;
  }
  .header-row {
    height: 68px;
  }
  .logo {
    width: 160px;
    height: 38px;
  }
  .nav {
    top: 68px;
  }
  .language {
    margin-left: auto;
  }
  .rtl .language {
    margin-left: 0;
    margin-right: auto;
  }
  .hero {
    padding: 65px 0;
  }
  .hero h1 {
    font-size: 3.2rem;
  }
  .actions .button {
    width: 100%;
  }
  .grid3,
  .data-grid {
    grid-template-columns: 1fr;
  }
  .datum {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .product-copy {
    padding: 30px 24px;
  }
  .product-img {
    min-height: 300px;
  }
  .section {
    padding: 74px 0;
  }
  .section-head {
    gap: 20px;
  }
  .page-hero {
    padding: 70px 0 45px;
  }
  .row,
  .rtl .row {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .footer .wrap {
    flex-direction: column;
    gap: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Shared B2B conversion and solution components */
.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  background: var(--panel, white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust-badge:before {
  content: "✓";
  color: var(--cyan, var(--amber));
}
.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  display: grid;
  gap: 7px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted, var(--dim));
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--panel, white);
  color: inherit;
  font: inherit;
  border-radius: 0;
}
.field textarea {
  min-height: 110px;
  resize: vertical;
}
.form-note {
  grid-column: 1/-1;
  color: var(--muted, var(--dim));
  font-size: 12px;
}
.floating-actions {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 9px;
}
.float-action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  background: var(--amber, #e7a73d);
  color: #101820;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.float-action.whatsapp {
  background: #1fac67;
  color: white;
}
.media-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 14px;
  margin-top: 36px;
}
.media-grid figure {
  margin: 0;
  min-height: 260px;
  border: 1px solid var(--line);
  background: var(--panel, white);
  overflow: hidden;
}
.media-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
}
.spec-table th,
.spec-table td {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.spec-table th {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted, var(--dim));
}
.rtl .spec-table th,
.rtl .spec-table td {
  text-align: right;
}
.download-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--panel, white);
}
.download-bar p {
  margin: 0;
  color: var(--muted, var(--dim));
}
@media (max-width: 1000px) {
  .media-grid {
    grid-template-columns: 1fr 1fr;
  }
  .media-grid figure:first-child {
    grid-column: 1/-1;
  }
  .nav {
    gap: 15px;
  }
  .nav a {
    font-size: 10px;
  }
}
@media (max-width: 650px) {
  .inquiry-form,
  .media-grid {
    grid-template-columns: 1fr;
  }
  .media-grid figure:first-child {
    grid-column: auto;
  }
  .download-bar {
    align-items: flex-start;
    flex-direction: column;
  }
  .floating-actions {
    left: 15px;
    right: 15px;
    grid-template-columns: 1fr 1fr;
  }
  .float-action {
    padding: 0 9px;
  }
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 42px;
}
.catalog-toolbar p {
  max-width: 600px;
  color: var(--muted);
  margin: 0;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.product-card {
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
}
.product-photo {
  position: relative;
  height: 310px;
  background: #edf1f2;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-card:hover .product-photo img {
  transform: scale(1.025);
}
.product-photo:after {
  content: attr(data-code);
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 9px;
  background: rgba(11, 17, 21, 0.88);
  color: var(--cyan);
  font:
    700 10px ui-monospace,
    monospace;
  letter-spacing: 0.12em;
}
.product-content {
  padding: 30px;
}
.product-content h2 {
  font-size: 2rem;
  margin: 10px 0 14px;
}
.product-content > p {
  color: var(--muted);
  min-height: 76px;
}
.product-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  margin-top: 24px;
}
.product-meta div {
  padding: 13px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.product-meta small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.feature-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.feature-list li {
  position: relative;
  padding: 8px 0 8px 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.feature-list li:before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--amber);
}
.source-note {
  margin-top: 36px;
  padding: 18px 20px;
  border-left: 2px solid var(--cyan);
  background: var(--ink2);
  color: var(--muted);
  font-size: 13px;
}
.source-note a {
  color: var(--cyan);
  text-decoration: underline;
}
.rtl .product-photo:after {
  right: auto;
  left: 14px;
}
.rtl .feature-list li {
  padding: 8px 20px 8px 0;
}
.rtl .feature-list li:before {
  left: auto;
  right: 0;
}
.rtl .source-note {
  border-left: 0;
  border-right: 2px solid var(--cyan);
}
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-content > p {
    min-height: 0;
  }
}
@media (max-width: 620px) {
  .catalog-toolbar {
    display: block;
  }
  .catalog-toolbar p {
    margin-top: 18px;
  }
  .product-photo {
    height: 250px;
  }
  .product-content {
    padding: 24px;
  }
  .product-meta {
    grid-template-columns: 1fr;
  }
}
.rtl {
  font-family: "Noto Sans Arabic", "Tajawal", Arial, sans-serif;
}
