﻿:root {
  --primary:   #0092AA;
  --dark:      #0F204A;
  --secondary: #0C6E80;
  --dark2:     #2E4F8A;
  --light1:    #EAF6F8;
  --light2:    #F5F8FC;
  --white:     #FFFFFF;
  --body:      #4A5878;
  --divider:   #D8E4EC;
  --font-ar:   'Tajawal', sans-serif;
  --font-en:   'Inter', 'Segoe UI', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-ar);
  background: var(--white);
  color: var(--dark);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}
body[dir="ltr"] {
  font-family: var(--font-en);
  direction: ltr;
  text-align: left;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  border-radius: 8px;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
  background: var(--white);
  direction: rtl;
}
.nav-bar { height: 3px; background: var(--primary); width: 100%; }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.3rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  direction: ltr;
}
.nav-logo {
  order: 1;
  flex: 0 0 auto;
}
.nav-links {
  order: 2;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  gap: 2.2rem;
  align-items: center;
  justify-content: center;
}
.nav-actions {
  order: 3;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.nav-logo img { height: 38px; width: auto; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.7rem;
  padding: .55rem .95rem;
  border: 1px solid var(--divider);
  background: var(--light2);
  color: var(--dark);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s, border-color .2s, background .2s;
}
.lang-switch:hover {
  color: var(--primary);
  border-color: rgba(0, 146, 170, .35);
  background: var(--white);
}
.nav-links a { font-size: .92rem; font-weight: 500; color: var(--dark); transition: color .2s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: .6rem 1.6rem;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .03em;
  transition: background .2s;
  border-radius: 8px;
}
.nav-cta:hover { background: var(--secondary); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  align-items: flex-start;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transform-origin: center;
  transition: transform .22s ease, opacity .18s ease;
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  direction: rtl;
  text-align: right;
}
.mobile-menu a { text-align: right; }

/* HERO */
.hero {
  height: 100vh; min-height: 640px;
  position: relative; display: flex; align-items: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('images/hero.jpg') center center / cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(15, 32, 74, .78);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  /* background: linear-gradient(180deg, rgba(15, 32, 74, 0) 0%, rgba(255, 255, 255, 1) 100%); */
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 2rem; width: 100%;
}
.hero-inner { max-width: 660px; }
.hero-eyebrow {
  font-size: .8rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 1.6rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900; line-height: 1.22;
  color: var(--white); margin-bottom: 1.4rem;
}
.hero p {
  font-size: 1.06rem; line-height: 1.9;
  color: rgba(255,255,255,.72);
  margin-bottom: 2.4rem; max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  background: var(--primary); color: var(--white);
  padding: .85rem 2.4rem;
  font-size: .96rem; font-weight: 700;
  transition: background .2s;
  border-radius: 8px;
}
.btn-primary:hover { background: var(--secondary); }
.btn-ghost {
  display: inline-block;
  color: rgba(255,255,255,.72);
  padding: .85rem 2.4rem;
  font-size: .96rem; font-weight: 500;
  transition: color .2s;
  border-radius: 8px;
}
.btn-ghost:hover { color: var(--white); }
.hero-stats {
  display: flex; gap: 3rem; flex-wrap: wrap;
  margin-top: 3.5rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-num {
  font-size: 2rem; font-weight: 900;
  color: var(--primary); line-height: 1; margin-bottom: .4rem;
}
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.5); }

/* ─── LAYOUT ─── */
.section { padding: 6rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800; line-height: 1.25; color: var(--dark);
  margin-bottom: 1.2rem;
}
.section-title.light { color: var(--white); }
.section-body {
  font-size: 1rem; line-height: 1.9; color: var(--body); max-width: 600px;
}

/* ─── ABOUT ─── */
.about { background: var(--white); }
.about { position: relative; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-image { position: relative; }
.about-image img {
  width: 100%; height: 520px;
  object-fit: cover; object-position: center top;
  display: block;
}
.about-accent {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 200px; height: 200px;
  background: var(--primary); z-index: -1;
}
.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .8rem; margin-top: 2.5rem;
}
.pillar {
  background: var(--light2); padding: 1.1rem 1.4rem;
  display: flex; align-items: center; gap: .8rem;
  border-radius: 8px;
}
.pillar-dot { width: 8px; height: 8px; background: var(--primary); flex-shrink: 0; }
.pillar-label { font-size: .88rem; font-weight: 700; color: var(--dark); }

/* ─── SERVICES ─── */
.services { background: var(--light2); }
.services-header { text-align: center; margin-bottom: 3.5rem; }
.services-header .section-body { margin: 0 auto; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: transparent;
}
.service-card {
  background: var(--white); padding: 2.4rem 2rem;
  border-radius: 8px;
  transition: background .2s;
  will-change: transform, opacity;
  transform: translateZ(0);
}
.service-card:hover { background: var(--light1); }
.service-icon {
  width: 52px; height: 52px; color: var(--primary);
  margin-bottom: 1.4rem;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-size: 1.08rem; font-weight: 800;
  color: var(--dark); margin-bottom: .7rem; line-height: 1.4;
}
.service-card p { font-size: .88rem; line-height: 1.8; color: var(--body); }

/* ─── HUB VISUAL ─── */
.hub-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 146, 170, .24), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(46, 79, 138, .28), transparent 30%),
    linear-gradient(135deg, #071225 0%, #0B1C3E 52%, #08152C 100%);
  color: var(--white);
}
.hub-stage {
  position: relative;
  max-width: 1200px;
  min-height: 560px;
  margin: 0 auto;
  padding: 4.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.hub-gridlines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .16;
  mask-image: radial-gradient(circle at center, #000 28%, transparent 78%);
}
.hub-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  opacity: .95;
}
.hub-glow-1 {
  width: 360px;
  height: 360px;
  top: 8%;
  right: 8%;
  background: rgba(0, 146, 170, .26);
  animation: hub-float-soft 10s ease-in-out infinite;
}
.hub-glow-2 {
  width: 280px;
  height: 280px;
  bottom: 8%;
  left: 8%;
  background: rgba(46, 79, 138, .24);
  animation: hub-float-soft 12s ease-in-out infinite reverse;
}
.hub-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hub-ring-outer {
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, .10);
  animation: hub-rotate 28s linear infinite;
}
.hub-ring-inner {
  width: 320px;
  height: 320px;
  border: 1px dashed rgba(0, 146, 170, .38);
  animation: hub-rotate 18s linear infinite reverse;
}
.hub-core {
  position: relative;
  z-index: 3;
  width: min(380px, 92vw);
  padding: 2.2rem 2rem 2.4rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .05));
  border: none;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
  backdrop-filter: blur(12px);
}
.hub-core > :not(.hub-core-pulse) {
  position: relative;
  z-index: 1;
}
.hub-core-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: .5rem .95rem;
  border-radius: 999px;
  background: rgba(0, 146, 170, .16);
  color: #C8F5FC;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hub-core h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: .85rem;
}
.hub-core p {
  font-size: .98rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, .72);
}
.hub-core-pulse {
  position: absolute;
  inset: -18px;
  border-radius: 12px;
  border: none;
  animation: hub-pulse 3.6s ease-out infinite;
  z-index: 0;
}
.hub-float {
  position: absolute;
  z-index: 4;
  width: 220px;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  background: rgba(7, 18, 39, .72);
  border: none;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
  backdrop-filter: blur(12px);
}
.hub-float-label {
  display: inline-flex;
  margin-bottom: .7rem;
  color: var(--primary);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
}
.hub-float strong {
  display: block;
  font-size: .98rem;
  line-height: 1.35;
  margin-bottom: .2rem;
}
.hub-float small {
  font-size: .82rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .58);
}
.hub-float-one {
  top: 16%;
  right: 10%;
  animation: hub-float-card 6.5s ease-in-out infinite;
}
.hub-float-two {
  right: 18%;
  bottom: 14%;
  animation: hub-float-card 7.4s ease-in-out infinite reverse;
}
.hub-float-three {
  top: 24%;
  left: 11%;
  animation: hub-float-card 8s ease-in-out infinite;
}
.hub-node {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 10px rgba(0, 146, 170, .10), 0 0 26px rgba(0, 146, 170, .75);
  z-index: 2;
  animation: hub-node-pulse 2.6s ease-in-out infinite;
}
.hub-node-one {
  top: 18%;
  right: calc(50% - 7px);
}
.hub-node-two {
  top: 50%;
  right: 24%;
}
.hub-node-three {
  bottom: 18%;
  left: 28%;
}
.hub-node-four {
  top: 50%;
  left: 24%;
}
@keyframes hub-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes hub-float-soft {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -14px, 0) scale(1.06); }
}
@keyframes hub-float-card {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -12px, 0); }
}
@keyframes hub-node-pulse {
  0%, 100% { transform: scale(1); opacity: .92; }
  50% { transform: scale(1.25); opacity: 1; }
}
@keyframes hub-pulse {
  0% { transform: scale(.96); opacity: .75; }
  70% { transform: scale(1.05); opacity: 0; }
  100% { transform: scale(1.05); opacity: 0; }
}

/* ─── IMPACT ─── */
.impact { background: var(--dark); }
.impact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.impact-grid > div,
.impact-image,
.impact-item {
  will-change: transform, opacity;
}
.impact-list { display: flex; flex-direction: column; }
.impact-item {
  display: flex; gap: 1.4rem; padding: 1.4rem 0;
}
.impact-item + .impact-item { border-top: 1px solid rgba(255,255,255,.08); }
.impact-marker {
  width: 4px; height: 4px; background: var(--primary);
  flex-shrink: 0; margin-top: .75rem;
}
.impact-item strong {
  display: block; font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: .3rem;
}
.impact-item p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.5); }
.impact-image {
  overflow: hidden;
  transform: translateZ(0);
}
.impact-image img {
  width: 100%; height: 480px; object-fit: cover;
  transform: scale(1.01);
}

/* ─── PROCESS ─── */
.process {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}
.process-header { text-align: center; margin-bottom: 3rem; }
.process-visual { position: relative; }
.process-canvas {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.1rem;
  background: #F9FCFF;
  overflow: hidden;
}
.process-line {
  position: absolute;
  top: 6.6rem;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 146, 170, .18), rgba(46, 79, 138, .18), rgba(0, 146, 170, .18));
  pointer-events: none;
}
.process-step {
  position: relative;
  padding: 1.4rem 1.15rem 1.35rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  border: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem;
}
.process-step-icon {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(0, 146, 170, .10);
  margin-bottom: .55rem;
}
.process-step-icon svg {
  width: 24px;
  height: 24px;
}
.process-step-index {
  display: inline-flex;
  color: var(--primary);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .18em;
}
.process-step strong {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: .1rem;
}
.process-step small {
  font-size: .84rem;
  line-height: 1.8;
  color: var(--body);
}

/* ─── CONTACT ─── */
.contact { background: var(--light1); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.contact--form-hidden .contact-grid {
  grid-template-columns: 1fr;
}
.contact--form-hidden .contact-form-shell {
  display: none;
}
.contact-info { margin-top: 2.5rem; }
.contact-info-item {
  display: flex; align-items: center;
  gap: 1.2rem; margin-bottom: 1.8rem;
  border-radius: 8px;
}
.contact-info-icon {
  width: 42px; height: 42px; background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--white);
  border-radius: 8px;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label {
  font-size: .75rem; font-weight: 700; color: var(--body);
  margin-bottom: .2rem; text-transform: uppercase; letter-spacing: .1em;
}
.contact-info-value { font-size: .96rem; font-weight: 600; color: var(--dark); }
.contact-form { display: flex; flex-direction: column; gap: .8rem; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 1rem 1.2rem;
  font-family: inherit;
  font-size: .95rem; background: var(--white);
  color: var(--dark); outline: none; border: none;
  border-radius: 8px;
  -webkit-appearance: none; appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #A0AABB; }
.contact-form textarea { height: 130px; resize: none; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.contact-submit {
  background: var(--dark); color: var(--white);
  padding: 1rem; width: 100%;
  font-family: inherit;
  font-size: 1rem; font-weight: 700; letter-spacing: .04em;
  transition: background .2s; border: none; cursor: pointer;
  border-radius: 8px;
}
.contact-submit:hover { background: var(--dark2); }

/* ─── FOOTER ─── */
footer {
  position: relative;
  overflow: hidden;
  background:

    linear-gradient(180deg, #0F204A 0%, #0B1738 100%);
  padding: 3rem 0 0;
}
.footer-map {
  position: absolute;
  right: -3%;
  bottom: -7%;
  width: min(58vw, 760px);
  max-width: 760px;
  opacity: .11;
  pointer-events: none;
  filter: drop-shadow(0 0 24px rgba(0, 146, 170, .14));
  transform: rotate(-2deg);
}
.footer-map img,
.footer-map svg {
  display: block;
  width: 100%;
  height: auto;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 2rem;
  position: relative;
  z-index: 1;
}
.footer-logo img { height: 32px; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-size: .85rem; color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: .82rem; color: rgba(255,255,255,.3);
  text-align: center;
  max-width: 1200px; margin: 2rem auto 0;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,.07);
  position: relative;
  z-index: 1;
}
.footer-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--primary), rgba(0, 146, 170, .55));
  width: 100%;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .nav-inner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: .5rem;
    padding: .9rem 1rem;
    direction: ltr;
  }
  .nav-links, .nav-cta { display: none; }
  .nav-logo,
  .nav-actions {
    order: initial;
  }
  .nav-logo {
    grid-column: 3;
    justify-self: end;
    min-width: 0;
  }
  .nav-logo img {
    height: 32px;
  }
  .nav-actions {
    grid-column: 1;
    justify-self: start;
    display: flex;
    align-items: center;
    gap: .5rem;
  }
  html[dir="ltr"] .nav-logo {
    grid-column: 1;
    justify-self: start;
  }
  html[dir="ltr"] .nav-actions {
    grid-column: 3;
    justify-self: end;
  }
  html[dir="rtl"] .nav-actions {
    grid-column: 1;
    justify-self: start;
  }
  .lang-switch {
    min-width: 3.2rem;
    padding: .48rem .75rem;
    font-size: .76rem;
  }
  .hamburger { display: flex; }
  .mobile-menu.open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
    background: var(--white); z-index: 300;
    padding: 2rem; padding-top: 3rem;
  }
  .mobile-menu a {
    font-size: 1.25rem; font-weight: 600; color: var(--dark);
    padding: 1rem 0; border-bottom: 1px solid var(--divider);
  }
  .mobile-close {
    position: absolute; top: 1.5rem; right: 1.5rem; left: auto;
    font-size: 1.5rem; color: var(--dark);
    background: none; border: none; cursor: pointer;
  }
  .about-grid, .impact-grid, .contact-grid {
    grid-template-columns: 1fr; gap: 3rem;
  }
  .about-image { order: -1; }
  .about-accent { display: none; }
  .about-image img, .impact-image img { height: 320px; }
  .hub-stage {
    min-height: 500px;
    padding: 3.5rem 1.5rem;
  }
  .hub-ring-outer { width: 420px; height: 420px; }
  .hub-ring-inner { width: 260px; height: 260px; }
  .hub-float { width: 200px; }
  .hub-float-one { top: 12%; right: 6%; }
  .hub-float-two { right: 8%; bottom: 8%; }
  .hub-float-three { left: 6%; top: 18%; }
  .hub-node-two { right: 18%; }
  .hub-node-four { left: 18%; }
  .process-canvas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-line {
    top: 8rem;
  }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 2rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-map {
    right: -18%;
    bottom: -2%;
    width: 92vw;
    opacity: .08;
  }
}
@media (max-width: 600px) {
  .nav-inner {
    padding: .8rem .85rem;
    gap: .4rem;
  }
  .nav-logo img {
    height: 28px;
  }
  .lang-switch {
    min-width: 3rem;
    padding: .42rem .65rem;
    font-size: .72rem;
  }
  .mobile-menu.open {
    top: 56px;
  }
  .services-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .contact-form-row { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .hub-visual { min-height: 460px; }
  .hub-stage {
    min-height: 460px;
    padding: 2.75rem 1rem;
  }
  .hub-ring-outer {
    width: 320px;
    height: 320px;
  }
  .hub-ring-inner {
    width: 210px;
    height: 210px;
  }
  .hub-core {
    width: min(100%, 94vw);
    padding: 1.8rem 1.25rem 2rem;
    border-radius: 24px;
  }
  .hub-float {
    width: min(170px, 42vw);
    padding: .9rem .95rem;
  }
  .hub-float-one { top: 8%; right: 4%; }
  .hub-float-two { right: 4%; bottom: 6%; }
  .hub-float-three { left: 4%; top: 14%; }
  .hub-node { width: 10px; height: 10px; }
  .hub-node-one { top: 15%; }
  .hub-node-two { right: 15%; }
  .hub-node-three { bottom: 15%; left: 24%; }
  .hub-node-four { left: 15%; }
  .process-canvas {
    grid-template-columns: 1fr;
    gap: .85rem;
    padding: 1rem;
  }
  .process-line {
    display: none;
  }
  .process-step {
    width: 100%;
  }
  .footer-map {
    right: -28%;
    bottom: 0;
    width: 115vw;
    opacity: .06;
  }
}

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

html[dir="ltr"] body {
  direction: ltr;
  text-align: left;
}
html[dir="ltr"] .nav,
html[dir="ltr"] .nav-inner,
html[dir="ltr"] .nav-links,
html[dir="ltr"] .mobile-menu {
  direction: ltr;
  text-align: left;
}
html[dir="rtl"] .nav-logo {
  order: 3;
}
html[dir="rtl"] .nav-actions {
  order: 1;
  direction: rtl;
}
html[dir="rtl"] .nav-links {
  direction: rtl;
}
html[dir="ltr"] .nav-links {
  direction: ltr;
}
html[dir="ltr"] .nav-actions {
  direction: ltr;
}
html[dir="ltr"] .mobile-menu a {
  text-align: left;
}
html[dir="ltr"] .mobile-close {
  right: auto;
  left: 1.5rem;
}
html[dir="ltr"] .about-accent {
  right: auto;
  left: -2rem;
}
html[dir="ltr"] .footer-map {
  right: auto;
  left: -3%;
}
