@import url("../assets/fonts/fonts.css");

:root {
  --navy: #061426;
  --navy-2: #0b2239;
  --navy-3: #102a45;
  --electric: #159bff;
  --cyan: #00c8ff;
  --white: #0d2440;
  --muted: #5c7186;
  --line: rgba(21, 155, 255, 0.16);
  --glass: rgba(255, 255, 255, 0.92);
  --shadow: 0 20px 48px rgba(16, 42, 69, 0.10);
  --bg: #9dbadb;
  --bg-soft: #bcd3ea;
  --btn-ghost-bg: rgba(21, 155, 255, 0.06);
  --btn-ghost-border: var(--line);
  --radius: 22px;
  --header-h: 92px;
  --font-ar: "IBM Plex Sans Arabic", "Segoe UI", Tahoma, sans-serif;
  --font-en: "Outfit", "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 560px, var(--bg-soft) 100%);
  color: var(--white);
  font-family: var(--font-ar);
  line-height: 1.7;
  overflow-x: hidden;
}
/* Zones that keep the brand's dark navy chrome (logo needs a dark backdrop) */
.site-header, .hero, .mobile-nav, .site-footer, .stats-bar {
  --white: #f5f8fc;
  --muted: #9aaac0;
  --btn-ghost-bg: rgba(6, 20, 38, 0.35);
  --btn-ghost-border: rgba(245, 248, 252, 0.35);
}
.hero, .mobile-nav, .site-footer { color: var(--white); }
html[lang="en"] body { font-family: var(--font-en); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }

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

.skip {
  position: absolute;
  inset-inline-start: -999px;
  top: 0;
  background: var(--electric);
  color: #fff;
  padding: 8px 14px;
  z-index: 200;
}
.skip:focus { inset-inline-start: 8px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(6, 20, 38, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: min-height .28s ease, background .28s ease, backdrop-filter .28s ease, box-shadow .28s ease;
}
.site-header.scrolled {
  --header-h: 74px;
  background: rgba(6, 20, 38, 0.94);
  box-shadow: 0 10px 40px rgba(16, 42, 69, 0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1280px, calc(100% - 32px));
  margin-inline: auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img {
  height: 64px;
  width: auto;
}
.site-header.scrolled .brand img { height: 54px; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-desktop a {
  padding: 8px 12px;
  font-size: 15.5px;
  line-height: 1.3;
  color: var(--muted);
  border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--white);
  background: rgba(21, 155, 255, 0.1);
}
.nav-desktop a.active { box-shadow: inset 0 -2px 0 var(--electric); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.vision-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 5px 8px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.vision-badge img { height: 100%; width: auto; object-fit: contain; display: block; }
@media (max-width: 640px) { .vision-badge { display: none; } }
.lang-btn, .menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white);
  background: rgba(21, 155, 255, 0.08);
  font-size: 14px;
  font-weight: 600;
}
.menu-toggle { display: none; width: 42px; padding: 0; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #159bff, #0d7ad4);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(21, 155, 255, 0.28);
}
.cta-phone:hover { filter: brightness(1.06); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(6, 20, 38, 0.96);
  backdrop-filter: blur(18px);
  padding: 24px;
  z-index: 70;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}
.mobile-nav.open {
  display: block;
  transform: none;
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a {
  display: block;
  padding: 14px 8px;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 20px);
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  transform: scale(1);
}
.hero-slide.is-active {
  opacity: 1;
  animation: hero-zoom 3.5s ease-out forwards;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(270deg, rgba(6,20,38,.78) 0%, rgba(6,20,38,.4) 48%, rgba(6,20,38,.22) 100%),
    linear-gradient(180deg, rgba(6,20,38,.12) 0%, rgba(6,20,38,.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 72px 0 88px;
  max-width: 720px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--electric);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--electric), var(--cyan));
}
h1, h2, h3 { line-height: 1.2; margin: 0; }
.hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -.02em;
}
.hero h1 span { color: var(--electric); display: block; }
.hero p.lead {
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  max-width: 560px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: .2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #159bff, #0ea5e9);
  color: #fff;
  box-shadow: 0 10px 30px rgba(21, 155, 255, 0.28);
}
.btn-ghost {
  border: 1px solid var(--btn-ghost-border);
  background: var(--btn-ghost-bg);
  color: var(--white);
}
.btn-profile {
  background: linear-gradient(135deg, #2f5fdb, #1e3fae);
  color: #fff;
  box-shadow: 0 10px 30px rgba(47, 95, 219, 0.32);
  font-family: "Outfit", "Inter", sans-serif;
  letter-spacing: .2px;
}
.btn:hover { transform: translateY(-1px); }

section { padding: 88px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 42px); }
.section-head p { color: var(--muted); margin-top: 12px; }

/* Marquee */
.trust {
  padding: 28px 0;
  border-block: 1px solid var(--line);
  background: rgba(21, 155, 255, 0.05);
}
.trust p {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.marquee { overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.brand-chip {
  width: 110px;
  height: 52px;
  background: #fff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
}
.brand-chip img { max-height: 28px; width: auto; max-width: 88px; object-fit: contain; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Clients carousel */
.clients-section { padding: 64px 0; }
.clients-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(1280px, calc(100% - 32px));
  margin-inline: auto;
}
.clients-track-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.clients-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.clients-set { display: flex; gap: 20px; padding-inline-end: 20px; }
.client-chip {
  width: 168px;
  height: 118px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}
.client-chip img { position: absolute; inset: 18px; width: calc(100% - 36px); height: calc(100% - 36px); object-fit: contain; display: block; }
.carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: grid;
  place-items: center;
  color: #0a1f38;
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
  z-index: 2;
  cursor: pointer;
}
.carousel-arrow svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.carousel-arrow:hover { background: var(--electric); color: #fff; }
@media (max-width: 640px) {
  .client-chip { width: 128px; height: 92px; }
  .client-chip img { inset: 12px; width: calc(100% - 24px); height: calc(100% - 24px); }
  .carousel-arrow { width: 36px; height: 36px; }
  .carousel-arrow svg { width: 16px; height: 16px; }
}

/* Services */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
  direction: ltr;
}
.service-row > * { direction: rtl; }
html[dir="ltr"] .service-row > * { direction: ltr; }
.service-row:last-child { margin-bottom: 0; }
.service-row.alt .service-copy { order: 2; }

.service-copy .num {
  font-family: var(--font-en);
  color: var(--electric);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: .08em;
}
.service-copy h3 { font-size: 28px; margin: 8px 0 12px; }
.service-copy p { color: var(--muted); margin: 0 0 16px; }
.service-copy ul { margin: 0; padding: 0; list-style: none; }
.service-copy li {
  position: relative;
  padding-inline-start: 18px;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 15px;
}
.service-copy li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}
.service-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/10;
}
.service-visual img { width: 100%; height: 100%; object-fit: cover; }
.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6,20,38,.45));
  pointer-events: none;
}

/* Cards / about */
.glass {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}
.grid-2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  position: relative;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.about-photo .caption {
  position: absolute;
  inset-inline: 18px;
  bottom: 18px;
  padding: 16px;
}
.values { margin: 18px 0 0; padding: 0; list-style: none; }
.values li { display: flex; gap: 10px; margin-bottom: 10px; color: var(--muted); }
.values li span { color: var(--electric); }

.why-card, .industry-card, .project-card, .partner-card, .stat-card, .value-card {
  padding: 22px;
  transition: transform .25s ease, border-color .25s ease;
}
.why-card:hover, .industry-card:hover, .project-card:hover, .partner-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 155, 255, 0.45);
}
.icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(21,155,255,.25), rgba(0,200,255,.12));
  margin-bottom: 14px;
}
.icon-wrap svg { width: 22px; height: 22px; stroke: var(--electric); fill: none; stroke-width: 1.8; }

.industry-card { text-align: center; }
.industry-card h3 { font-size: 18px; }

.industry-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  padding: 0;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.industry-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .5s ease;
  filter: saturate(1.02);
}
.industry-photo:hover img { transform: scale(1.08); }
.industry-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 20px 14px 18px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(6,20,38,0) 35%, rgba(6,20,38,.55) 65%, rgba(6,20,38,.92) 100%);
}
.industry-overlay .icon-wrap {
  margin-bottom: 10px;
  background: rgba(6, 20, 38, 0.55);
  border: 1px solid rgba(0, 200, 255, 0.35);
  backdrop-filter: blur(6px);
}
.industry-overlay h3 { font-size: 16px; }

.project-card .loc { color: var(--electric); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.project-card h3 { margin: 8px 0 8px; font-size: 20px; }
.project-card p { color: var(--muted); margin: 0; font-size: 14px; }

.project-photo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease;
}
.project-photo-card:hover { transform: translateY(-4px); border-color: rgba(21, 155, 255, 0.45); }
.project-photo-card .ppc-img {
  aspect-ratio: 12 / 7;
  overflow: hidden;
  background: #fff;
}
.project-photo-card .ppc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.project-photo-card .ppc-body { padding: 16px 18px 20px; }
.project-photo-card .ppc-client { margin: 0 0 6px; font-size: 15px; font-weight: 800; line-height: 1.45; }
.project-photo-card .ppc-desc { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.55; }
.grid-3.projects-grid-all { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .grid-3.projects-grid-all { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-3.projects-grid-all { grid-template-columns: 1fr; }
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: linear-gradient(180deg, rgba(11,34,57,.8), rgba(6,20,38,.6));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
}
.stat-card { text-align: center; background: transparent; border: 0; }
.stat-card .n {
  font-family: var(--font-en);
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
}
.stat-card p { margin: 6px 0 0; color: var(--muted); }

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.partner-logo {
  background: #fff;
  border-radius: 12px;
  height: 78px;
  display: grid;
  place-items: center;
  padding: 10px;
}
.partner-logo img { max-height: 36px; max-width: 92px; object-fit: contain; }

.cta-band {
  background: linear-gradient(135deg, #0d5fa8, #159bff 60%, #00a8d6);
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 20px 50px rgba(21, 155, 255, 0.2);
  color: #fff;
  --btn-ghost-bg: rgba(6, 20, 38, 0.2);
  --btn-ghost-border: rgba(255, 255, 255, 0.45);
}
.cta-band h2 { font-size: clamp(26px, 3vw, 40px); }
.cta-band p { color: rgba(255,255,255,.86); max-width: 620px; }
.cta-band .btn-ghost { border-color: rgba(255,255,255,.45); }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; }
.contact-item {
  display: flex;
  gap: 12px;
  padding: 16px;
  margin-bottom: 12px;
}
.contact-item small { color: var(--electric); font-weight: 700; letter-spacing: .06em; }
.contact-item p { margin: 4px 0 0; }
.form {
  padding: 28px;
}
.form h3 { margin-bottom: 6px; }
.form .hint { color: var(--muted); margin: 0 0 20px; font-size: 14px; }
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; color: var(--muted); }
.field input, .field textarea {
  background: #eef4fa;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
}
.field input:focus, .field textarea:focus { border-color: var(--electric); }
.form-note { margin-top: 12px; font-size: 13px; color: var(--muted); }
.form-msg { margin-top: 12px; font-size: 14px; }
.form-msg.ok { color: #15803d; }
.form-msg.err { color: #dc2626; }
.map-wrap {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.timeline { position: relative; max-width: 760px; margin: 0 auto; }
.timeline::before {
  content: "";
  position: absolute;
  inset-inline-start: 10px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(var(--electric), transparent);
}
.tl-item { position: relative; padding-inline-start: 42px; margin-bottom: 22px; }
.tl-item .dot {
  position: absolute;
  inset-inline-start: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric), var(--cyan));
}
.page-hero { padding: 64px 0 24px; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 24px;
  background: #05101e;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 28px; }
.site-footer h4 { margin: 0 0 14px; color: var(--cyan); font-size: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; color: var(--muted); font-size: 14px; }
.site-footer a:hover { color: var(--white); }
.copy {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  flex-wrap: wrap;
}

.wa-float {
  position: fixed;
  inset-inline-end: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  z-index: 90;
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

html.js .reveal {
  opacity: 0;
  transform: translateY(42px) scale(.97);
  transition: opacity 1.1s cubic-bezier(.16,.7,.25,1), transform 1.1s cubic-bezier(.16,.7,.25,1);
  transition-delay: var(--reveal-delay, 0s);
}
html.js .reveal.in-view { opacity: 1; transform: none; }

/* Hero entrance */
.hero-content.reveal { transform: translateY(14px); transition-duration: .8s; }
@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}

/* Micro-interactions */
.service-visual { transition: transform .4s ease, box-shadow .4s ease; }
.service-visual img { transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.service-row:hover .service-visual img { transform: scale(1.05); }
.brand-chip, .partner-logo { transition: transform .25s ease, box-shadow .25s ease; }
.brand-chip:hover, .partner-logo:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.25); }
.btn-primary, .cta-phone { position: relative; overflow: hidden; }
.wa-float { transition: transform .25s ease; }
.wa-float:hover { transform: scale(1.08); }

@media (max-width: 1100px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: inline-flex; }
  .cta-phone span { display: none; }
  .grid-6, .ecosystem-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .service-row,
  .service-row.alt {
    grid-template-columns: 1fr;
  }
  .service-row.alt .service-copy { order: 0; }
  .service-visual { order: -1; }
  .grid-2, .contact-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .fields { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .cta-band { padding: 28px; }
  .about-photo, .about-photo img { min-height: 280px; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1200px); }
  section { padding: 64px 0; }
  .grid-4, .grid-6, .ecosystem-grid, .stats-bar, .footer-grid { grid-template-columns: 1fr 1fr; }
  .copy { flex-direction: column; }
}
@media (max-width: 430px) {
  .grid-6, .ecosystem-grid { grid-template-columns: 1fr 1fr; }
}
