:root {
  --nw-bg: #0b1020;
  --nw-bg-2: #1b1940;
  --nw-bg-3: #2f245f;
  --nw-surface: rgba(255, 255, 255, 0.06);
  --nw-surface-strong: rgba(255, 255, 255, 0.1);
  --nw-border: rgba(255, 255, 255, 0.12);
  --nw-text: #f4f3fb;
  --nw-text-soft: rgba(244, 243, 251, 0.76);
  --nw-gold: #f6b64f;
  --nw-gold-2: #f3a442;
  --nw-mauve: #ae67a5;
  --nw-purple: #8253d1;
  --nw-purple-2: #6944b4;
  --nw-shadow: 0 24px 70px rgba(11, 16, 32, 0.45);
  --nw-shadow-strong: 0 30px 90px rgba(130, 83, 209, 0.32);
  --nw-radius: 28px;
  --nw-radius-lg: 36px;
  --nw-radius-xl: 42px;
  --nw-header-offset: 118px;
  --nw-container: min(1220px, calc(100% - 2rem));
  --nw-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--nw-text);
  background:
    radial-gradient(circle at 50% 10%, rgba(130, 83, 209, 0.38), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(174, 103, 165, 0.24), transparent 24%),
    linear-gradient(135deg, #090d1a 0%, #171436 45%, #2d2257 100%);
  font-family: "Inter", "IBM Plex Sans Arabic", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-top: var(--nw-header-offset);
  overflow-x: hidden;
}

body[dir="rtl"] {
  font-family: "IBM Plex Sans Arabic", "Inter", system-ui, sans-serif;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(246, 182, 79, 0.12), transparent 18%),
    radial-gradient(circle at 82% 12%, rgba(130, 83, 209, 0.16), transparent 16%),
    radial-gradient(circle at 78% 76%, rgba(174, 103, 165, 0.12), transparent 18%);
  filter: blur(18px);
  opacity: 0.9;
}

body::after {
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--nw-gold);
  outline-offset: 3px;
}

::selection {
  background: rgba(246, 182, 79, 0.28);
  color: var(--nw-text);
}

.site-shell {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 8%, rgba(130, 83, 209, 0.15), transparent 24%),
    radial-gradient(circle at 80% 0%, rgba(246, 182, 79, 0.11), transparent 18%),
    radial-gradient(circle at 50% 92%, rgba(174, 103, 165, 0.08), transparent 18%);
  z-index: -1;
}

.site-container {
  width: var(--nw-container);
  margin-inline: auto;
}

.site-skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: 1rem;
  z-index: 80;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: rgba(246, 182, 79, 0.96);
  color: #231a05;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 0.2s var(--nw-ease);
}

.site-skip-link:focus {
  transform: translateY(0);
}

.glass {
  background: var(--nw-surface);
  border: 1px solid var(--nw-border);
  box-shadow: var(--nw-shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.glass-strong {
  background: var(--nw-surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--nw-shadow-strong);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.glass-hover {
  transition:
    transform 0.35s var(--nw-ease),
    border-color 0.35s var(--nw-ease),
    box-shadow 0.35s var(--nw-ease);
}

.glass-hover:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 182, 79, 0.38);
  box-shadow: 0 28px 80px rgba(11, 16, 32, 0.58);
}

.text-gradient-gold,
.aurora-text {
  background: linear-gradient(100deg, var(--nw-gold), var(--nw-purple), var(--nw-mauve), var(--nw-gold));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: aurora-shift 8s ease-in-out infinite;
}

.section {
  position: relative;
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.section--tight {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(244, 243, 251, 0.84);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-eyebrow .bi {
  color: var(--nw-gold);
}

.section-title {
  margin: 1rem 0 0;
  font-family: "Poppins", "IBM Plex Sans Arabic", sans-serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

body[dir="rtl"] .section-title {
  font-family: "IBM Plex Sans Arabic", "Poppins", sans-serif;
  letter-spacing: 0;
}

.section-copy {
  max-width: 880px;
  margin: 1.25rem auto 0;
  color: var(--nw-text-soft);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.95;
}

.section-head {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.section-head--wide {
  max-width: 980px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.5rem);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.25rem);
}

.card {
  border-radius: var(--nw-radius-lg);
}

.card-pad {
  padding: clamp(1.2rem, 2vw, 1.6rem);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(244, 243, 251, 0.84);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.3s var(--nw-ease),
    border-color 0.3s var(--nw-ease),
    background-color 0.3s var(--nw-ease),
    color 0.3s var(--nw-ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button--gold {
  background: linear-gradient(135deg, var(--nw-gold), var(--nw-gold-2));
  color: #261905;
  box-shadow: 0 18px 30px rgba(246, 182, 79, 0.24);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--nw-text);
}

.button--ghost:hover {
  border-color: rgba(246, 182, 79, 0.36);
  background: rgba(255, 255, 255, 0.1);
}

.button--soft {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--nw-text);
}

.button .bi {
  font-size: 1rem;
}

.badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.badge-strip--start {
  justify-content: flex-start;
}

.badge-strip--spaced {
  margin-top: 1rem;
}

.badge-strip .pill {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero {
  position: relative;
  padding: 2rem 0 0;
}

.hero__intro {
  text-align: center;
  max-width: 980px;
}

.hero__eyebrow {
  margin-inline: auto;
}

.hero__title {
  margin: 1.1rem auto 0;
  font-family: "Poppins", "IBM Plex Sans Arabic", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

body[dir="rtl"] .hero__title {
  font-family: "IBM Plex Sans Arabic", "Poppins", sans-serif;
  letter-spacing: 0;
}

.hero__title .accent {
  color: var(--nw-mauve);
}

.hero__lead {
  margin: 1.2rem auto 0;
  max-width: 980px;
  color: rgba(244, 243, 251, 0.8);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.95;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.hero__actions--start {
  justify-content: flex-start;
}

.hero__badges {
  margin-top: 1.2rem;
}

.hero__badge-icon {
  color: var(--nw-gold);
}

.hero__image-shell {
  position: relative;
  margin-top: 2rem;
  border-radius: 34px;
  overflow: hidden;
}

.hero__image-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 18, 0.04) 0%, rgba(8, 10, 18, 0.42) 100%),
    linear-gradient(135deg, rgba(130, 83, 209, 0.12), rgba(246, 182, 79, 0.1));
  z-index: 1;
}

.hero__image {
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
}

.hero__caption {
  position: absolute;
  inset-inline-start: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(8, 10, 18, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.hero__caption-logo {
  height: 26px;
  width: auto;
}

.hero__caption-text {
  font-size: 0.92rem;
  font-weight: 700;
}

.hero__highlights {
  margin-top: 1.4rem;
}

.hero__highlight {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 68px;
}

.hero__highlight + .hero__highlight {
  margin-top: 0.55rem;
}

.hero__highlight-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  color: var(--nw-gold);
}

.hero__highlight-title {
  font-weight: 700;
  color: rgba(244, 243, 251, 0.94);
}

.hero__highlight-desc {
  display: block;
  margin-top: 0.15rem;
  color: rgba(244, 243, 251, 0.7);
  font-size: 0.92rem;
  line-height: 1.7;
}

.hero__split {
  margin-top: 1.9rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1rem;
}

.hero__info-card,
.hero__about-card,
.hero__contact-card,
.stats-card,
.service-card,
.project-card,
.partner-card,
.why-card,
.tool-chip,
.contact-form,
.footer-panel {
  border-radius: var(--nw-radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--nw-shadow);
}

.hero__info-card {
  padding: 1.05rem 1.15rem;
}

.hero__info-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.hero__info-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 182, 79, 0.14);
  color: var(--nw-gold);
}

.hero__info-title {
  font-weight: 800;
  font-size: 1rem;
}

.hero__info-text {
  margin-top: 0.4rem;
  color: var(--nw-text-soft);
  line-height: 1.8;
}

.hero__info-actions {
  margin-top: 1rem;
}

.about-preview {
  padding-top: clamp(4rem, 7vw, 6.5rem);
}

.about-preview__card {
  border-radius: 38px;
  padding: clamp(1.5rem, 3vw, 2.1rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 0% 0%, rgba(246, 182, 79, 0.08), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: var(--nw-shadow);
}

.about-preview__image-shell {
  border-radius: 28px;
  overflow: hidden;
}

.about-preview__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-preview__lead {
  color: var(--nw-text-soft);
  max-width: 1060px;
  margin: 1.2rem auto 0;
  text-align: center;
  line-height: 2;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
}

.about-preview__features {
  margin-top: 1.75rem;
}

.about-preview__feature {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 1rem 1.1rem;
  min-height: 72px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.about-preview__feature + .about-preview__feature {
  margin-top: 0.7rem;
}

.about-preview__feature-icon {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  color: var(--nw-gold);
}

.about-preview__feature-label {
  font-weight: 700;
}

.about-preview__feature-text {
  color: var(--nw-text-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.about-preview__title {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  margin-top: 0.95rem;
}

.services-grid {
  margin-top: 2rem;
}

.service-card {
  padding: 1.4rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -16% -18% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 182, 79, 0.18), transparent 66%);
  filter: blur(8px);
  pointer-events: none;
}

.service-card__icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(246, 182, 79, 0.14);
  border: 1px solid rgba(246, 182, 79, 0.18);
  color: var(--nw-gold);
  font-size: 1.2rem;
}

.service-card__title {
  margin: 1rem 0 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.service-card__text {
  margin: 0.65rem 0 0;
  color: var(--nw-text-soft);
  line-height: 1.9;
}

.service-card__footer {
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.service-card__link {
  color: var(--nw-gold);
  font-weight: 800;
}

.service-card__route {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-grid {
  margin-top: 2rem;
}

.why-card {
  padding: 1.25rem;
}

.why-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(246, 182, 79, 0.92), rgba(243, 164, 66, 0.92));
  color: #261905;
  box-shadow: 0 18px 28px rgba(246, 182, 79, 0.18);
}

.why-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-card__title {
  margin-top: 1rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.why-card__text {
  margin-top: 0.45rem;
  color: var(--nw-text-soft);
  line-height: 1.85;
}

.stats-grid {
  margin-top: 2rem;
}

.stats-card {
  padding: 1.4rem;
  text-align: center;
}

.stats-card__value {
  margin: 0;
  font-family: "Poppins", "IBM Plex Sans Arabic", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  font-weight: 800;
}

body[dir="rtl"] .stats-card__value {
  font-family: "IBM Plex Sans Arabic", "Poppins", sans-serif;
}

.stats-card__label {
  margin: 0.5rem 0 0;
  color: var(--nw-text-soft);
  line-height: 1.7;
}

.stats-card__thumb {
  width: 3rem;
  height: 3rem;
  margin-inline: auto 0;
  margin-bottom: 0.85rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-grid {
  margin-top: 2rem;
}

.project-card {
  overflow: hidden;
  height: 100%;
}

.project-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.project-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 13, 26, 0.05), rgba(9, 13, 26, 0.54)),
    linear-gradient(135deg, rgba(130, 83, 209, 0.14), rgba(246, 182, 79, 0.08));
  z-index: 1;
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--nw-ease);
}

.project-card:hover .project-card__media img {
  transform: scale(1.05);
}

.project-card__content {
  padding: 1.25rem;
}

.project-card__meta--top {
  margin-top: 0;
}

.project-card__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.project-card__text {
  margin: 0.6rem 0 0;
  color: var(--nw-text-soft);
  line-height: 1.85;
}

.project-card__meta {
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(244, 243, 251, 0.86);
  font-size: 0.95rem;
}

.project-card__meta .bi {
  color: var(--nw-gold);
}

.tools-marquee {
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 1.2rem 0;
}

.tools-marquee__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.tool-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.2rem;
  border-radius: 18px;
  white-space: nowrap;
  font-weight: 700;
  color: rgba(244, 243, 251, 0.84);
}

.tool-chip__icon {
  color: var(--nw-gold);
}

.partners-grid {
  margin-top: 2rem;
}

.partner-card {
  padding: 1.15rem;
  text-align: center;
  height: 100%;
}

.partner-card--full {
  grid-column: 1 / -1;
}

.partner-card__logo {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 1rem;
}

.partner-card__name {
  margin-top: 0.85rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.contact-panel {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.contact-list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.contact-list__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--nw-text-soft);
}

.contact-list__icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 182, 79, 0.14);
  color: var(--nw-gold);
}

.contact-form {
  padding: clamp(1.35rem, 2.8vw, 1.9rem);
}

.field-grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field label {
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--nw-text);
  padding: 0.95rem 1rem;
  transition:
    border-color 0.25s var(--nw-ease),
    background-color 0.25s var(--nw-ease);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(244, 243, 251, 0.52);
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(246, 182, 79, 0.46);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.alert-box {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(246, 182, 79, 0.22);
  background: rgba(246, 182, 79, 0.08);
  color: rgba(244, 243, 251, 0.96);
}

.footer {
  margin-top: clamp(4rem, 7vw, 6rem);
  padding: 0 0 1.5rem;
}

.footer-panel {
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 0.9fr 0.9fr;
  gap: 1.5rem;
}

.footer__grid--spaced {
  margin-top: 1.5rem;
}

.footer__brand-logo {
  height: 54px;
  width: auto;
}

.footer__text {
  margin-top: 1rem;
  color: var(--nw-text-soft);
  line-height: 1.9;
}

.footer__socials {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.footer__social {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(244, 243, 251, 0.76);
  transition:
    transform 0.25s var(--nw-ease),
    border-color 0.25s var(--nw-ease),
    color 0.25s var(--nw-ease);
}

.footer__social:hover {
  transform: translateY(-2px);
  border-color: rgba(246, 182, 79, 0.4);
  color: var(--nw-gold);
}

.footer__title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__links {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.footer__quick-actions {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.footer__quick-actions .button {
  width: 100%;
}

.footer__links a {
  color: var(--nw-text-soft);
  transition: color 0.25s var(--nw-ease);
}

.footer__links a:hover {
  color: var(--nw-gold);
}

.footer__contact-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--nw-text-soft);
}

.footer__contact-item .bi {
  color: var(--nw-gold);
  margin-top: 0.15rem;
}

.footer__legal {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 1.2rem;
  color: rgba(244, 243, 251, 0.68);
  font-size: 0.9rem;
}

.footer__legal strong {
  color: rgba(244, 243, 251, 0.92);
}

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 70;
  padding: 0.8rem 0 0;
  transition: padding 0.35s var(--nw-ease), transform 0.35s var(--nw-ease);
}

.site-header.is-scrolled {
  padding-top: 0.45rem;
}

.site-header__bar {
  width: var(--nw-container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 30px;
  background: rgba(8, 10, 18, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--nw-shadow);
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.site-header__brand-logo {
  height: 54px;
  width: auto;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-header__link,
.site-header__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 1.05rem;
  border-radius: 999px;
  color: rgba(244, 243, 251, 0.78);
  font-size: 0.95rem;
  font-weight: 800;
  transition:
    background-color 0.25s var(--nw-ease),
    color 0.25s var(--nw-ease),
    transform 0.25s var(--nw-ease);
}

.site-header__link:hover,
.site-header__dropdown-toggle:hover,
.site-header__link.is-active {
  color: var(--nw-text);
  background: rgba(255, 255, 255, 0.06);
}

.site-header__dropdown {
  position: relative;
}

.site-header__dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-start: 0;
  min-width: 290px;
  padding: 0.7rem;
  border-radius: 24px;
  background: rgba(11, 16, 32, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--nw-shadow-strong);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.25s var(--nw-ease),
    visibility 0.25s var(--nw-ease),
    transform 0.25s var(--nw-ease);
}

.site-header__dropdown:hover .site-header__dropdown-menu,
.site-header__dropdown:focus-within .site-header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-header__dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  color: rgba(244, 243, 251, 0.76);
  transition: background-color 0.2s var(--nw-ease), color 0.2s var(--nw-ease);
}

.site-header__dropdown-item:hover {
  color: var(--nw-text);
  background: rgba(255, 255, 255, 0.06);
}

.site-header__dropdown-item .bi {
  color: var(--nw-gold);
}

.site-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.site-header__lang {
  min-width: 3.8rem;
  justify-content: center;
}

.site-header__cta {
  padding-inline: 1.1rem;
}

.site-header__burger {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--nw-text);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s var(--nw-ease), visibility 0.25s var(--nw-ease);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 6, 12, 0.68);
  backdrop-filter: blur(6px);
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(88vw, 390px);
  padding: 1rem;
  overflow-y: auto;
  background: rgba(11, 16, 32, 0.96);
  border-inline-end: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--nw-shadow-strong);
}

body[dir="rtl"] .mobile-menu__panel {
  inset-inline-start: 0;
  inset-inline-end: auto;
  border-inline-end: 0;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.08);
}

body[dir="ltr"] .mobile-menu__panel {
  inset-inline-end: 0;
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__close {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--nw-text);
}

.mobile-menu__nav {
  display: grid;
  gap: 0.6rem;
  padding-top: 1rem;
}

.mobile-menu__link,
.mobile-menu__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  color: var(--nw-text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.mobile-menu__summary::-webkit-details-marker {
  display: none;
}

.mobile-menu__submenu {
  display: grid;
  gap: 0.45rem;
  padding: 0.5rem 0.2rem 0.2rem;
}

.mobile-menu__sub-link {
  display: block;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  color: rgba(244, 243, 251, 0.8);
  background: rgba(255, 255, 255, 0.03);
}

.mobile-menu__actions {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.mobile-menu__lang {
  justify-content: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s var(--nw-ease),
    transform 0.7s var(--nw-ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer__bottom {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 1.2rem;
  color: rgba(244, 243, 251, 0.66);
  font-size: 0.9rem;
}

.footer__bottom-inner strong {
  color: rgba(244, 243, 251, 0.92);
}

.footer__legal-title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form__title {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.contact-errors {
  margin: 0;
  padding-inline-start: 1.2rem;
}

.section-actions {
  margin-top: 2.25rem;
  display: flex;
  justify-content: center;
}

.section-actions--start {
  justify-content: flex-start;
}

.section-copy--start {
  text-align: start;
  margin-inline: 0;
}

.alert-box--spaced {
  margin-top: 1rem;
}

.field-grid--spaced {
  margin-top: 1rem;
}

.submit-full {
  width: 100%;
}

.section-divider {
  height: 1px;
  margin-top: 1.2rem;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

@keyframes aurora-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1200px) {
  .site-header__nav {
    display: none;
  }

  .site-header__burger {
    display: inline-flex;
  }

  .contact-grid,
  .hero__split,
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  :root {
    --nw-header-offset: 102px;
  }

  body {
    padding-top: var(--nw-header-offset);
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero__image {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 768px) {
  .site-header__bar {
    padding: 0.75rem 0.8rem;
    border-radius: 24px;
  }

  .site-header__brand-logo,
  .footer__brand-logo {
    height: 46px;
  }

  .site-header__cta {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero__caption {
    inset-inline: 1rem;
    justify-content: center;
  }
}

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

/* Reference homepage replica: translated from arnewwaves/src Tailwind layout. */
body {
  padding-top: 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(130, 83, 209, 0.42), transparent 34%),
    linear-gradient(135deg, #130929 0%, #2a1760 45%, #4d3281 100%);
}

.site-header,
.footer,
.nwx-page {
  direction: inherit;
}

.site-header {
  padding-top: 16px;
}

.site-header.is-scrolled {
  padding-top: 8px;
}

.site-header__bar {
  max-width: 1064px;
  width: min(1064px, calc(100% - 40px));
  padding: 10px 16px;
  border-radius: 999px;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.site-header.is-scrolled .site-header__bar {
  background: rgba(21, 14, 43, 0.72);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(13, 6, 31, 0.34);
}

.site-header__brand-logo {
  height: 28px;
}

.site-header__nav {
  gap: 2px;
}

.site-header__link,
.site-header__dropdown-toggle {
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(244, 243, 251, 0.78);
}

.site-header__dropdown-menu {
  min-width: 220px;
  border-radius: 18px;
}

.site-header__dropdown-item {
  font-size: 12px;
  border-radius: 12px;
}

.site-header__actions {
  gap: 8px;
}

.site-header .button {
  min-height: 34px;
  padding: 7px 12px;
  font-size: 12px;
}

.site-header__lang {
  min-width: 58px;
}

.site-header__burger {
  width: 38px;
  height: 38px;
}

.nwx-page {
  position: relative;
  min-height: 0;
  color: #f7f4ff;
  overflow: hidden;
}

.nwx-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 12%, rgba(139, 78, 219, 0.34), transparent 28%),
    linear-gradient(135deg, #150832 0%, #2a1660 48%, #573687 100%);
}

.nwx-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(165deg, transparent 0 18%, rgba(255,255,255,0.08) 18.1% 29%, transparent 29.1%),
    linear-gradient(180deg, transparent 0 12%, rgba(255,255,255,0.06) 12.05% 18%, transparent 18.05% 31%, rgba(255,255,255,0.055) 31.05% 37%, transparent 37.05% 52%, rgba(255,255,255,0.055) 52.05% 58%, transparent 58.05% 73%, rgba(255,255,255,0.055) 73.05% 80%, transparent 80.05%);
}

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

.nwx-section {
  padding: 76px 0;
}

.nwx-section--short {
  padding: 56px 0;
}

.nwx-hero {
  min-height: 604px;
  padding: 96px 0 72px;
  display: flex;
  align-items: center;
}

.nwx-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.94fr);
  align-items: center;
  gap: 48px;
}

.nwx-hero__copy {
  max-width: 540px;
}

.nwx-eyebrow,
.nwx-heading p {
  margin: 0;
  color: #f6b64f;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nwx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(244, 243, 251, 0.76);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.nwx-eyebrow i {
  color: #f6b64f;
}

.nwx-hero__title {
  margin: 24px 0 0;
  font-family: "Poppins", "IBM Plex Sans Arabic", sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  max-width: 520px;
}

.nwx-hero__title span,
.nwx-stat strong {
  background: linear-gradient(100deg, #f6b64f, #8253d1, #ae67a5, #f6b64f);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: aurora-shift 8s ease-in-out infinite;
}

.nwx-hero__text,
.nwx-muted {
  color: rgba(244, 243, 251, 0.72);
  line-height: 1.72;
}

.nwx-hero__text {
  margin: 24px 0 0;
  max-width: 520px;
  font-size: 15px;
}

.nwx-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.nwx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.25s var(--nw-ease), border-color 0.25s var(--nw-ease);
}

.nwx-btn:hover {
  transform: translateY(-2px);
}

.nwx-btn--gold {
  color: #2a1906;
  background: linear-gradient(135deg, #f6b64f, #f3a442);
  box-shadow: 0 12px 35px rgba(246, 182, 79, 0.3);
}

.nwx-btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nwx-hero__visual {
  position: relative;
}

.nwx-hero-card {
  position: relative;
  padding: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(13, 6, 31, 0.45);
  backdrop-filter: blur(18px);
}

.nwx-hero-card::before {
  content: "";
  position: absolute;
  inset: -28px;
  z-index: -1;
  background: radial-gradient(circle, rgba(130, 83, 209, 0.56), transparent 70%);
  filter: blur(26px);
}

.nwx-hero-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
}

.nwx-hero-logo {
  position: absolute;
  inset-inline-start: 20px;
  bottom: 20px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.nwx-hero-logo img {
  height: 28px;
  width: auto;
}

.nwx-about__grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.nwx-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 520px;
}

.nwx-icon-tile {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: #f6b64f;
  font-size: 25px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(13, 6, 31, 0.36);
  backdrop-filter: blur(18px);
}

.nwx-icon-tile--shift {
  transform: translateY(24px);
}

.nwx-heading {
  margin-inline: auto;
  max-width: 640px;
  text-align: center;
  margin-bottom: 2rem;
}

.nwx-heading--left {
  margin-inline: 0;
  text-align: start;
}

.nwx-heading h2 {
  margin: 12px 0 0;
  font-family: "Poppins", "IBM Plex Sans Arabic", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.nwx-heading span {
  display: block;
  margin-top: 14px;
  color: rgba(244, 243, 251, 0.72);
}

.nwx-muted {
  margin: 22px 0 0;
  max-width: 560px;
  font-size: 15px;
}

.nwx-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: #f6b64f;
  font-size: 14px;
  font-weight: 800;
}

.nwx-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.nwx-service-card,
.nwx-why,
.nwx-why-card,
.nwx-stat,
.nwx-project,
.nwx-partner,
.nwx-contact,
.nwx-form,
.footer-panel {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(13, 6, 31, 0.36);
  backdrop-filter: blur(18px);
}

.nwx-service-card {
  min-height: 202px;
  padding: 28px;
  border-radius: 20px;
  transition: transform 0.35s var(--nw-ease), border-color 0.35s var(--nw-ease);
}

.nwx-service-card:hover,
.nwx-why-card:hover,
.nwx-project:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 182, 79, 0.45);
}

.nwx-service-card > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #f6b64f;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.nwx-service-card h3 {
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.2;
}

.nwx-service-card p,
.nwx-why-card p {
  margin: 10px 0 0;
  color: rgba(244, 243, 251, 0.72);
  font-size: 13px;
  line-height: 1.7;
}

.nwx-service-card small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: #f6b64f;
  font-size: 12px;
  font-weight: 800;
}

.nwx-why {
  padding: 48px;
  border-radius: 30px;
}

.nwx-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.nwx-why__grid--single .nwx-why-card {
  max-width: 420px;
  width: 100%;
  justify-content: space-between;
}

.nwx-why-card {
  padding: 24px;
  border-radius: 18px;
}

.nwx-why-card > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #2a1906;
  background: linear-gradient(135deg, #f6b64f, #f3a442);
}

.nwx-why-card h3 {
  margin: 18px 0 0;
  font-size: 16px;
}

.nwx-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 24px;
}

.nwx-stat {
  padding: 26px 18px;
  border-radius: 18px;
  text-align: center;
}

.nwx-stat strong {
  display: block;
  font-family: "Poppins", "IBM Plex Sans Arabic", sans-serif;
  font-size: 42px;
  line-height: 1;
}

.nwx-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(244, 243, 251, 0.72);
  font-size: 12px;
}

.nwx-projects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.nwx-project {
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.35s var(--nw-ease), border-color 0.35s var(--nw-ease);
}

.nwx-project > div {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
}

.nwx-project--one > div {
  background: linear-gradient(135deg, #7742a8, #ad5ec2);
}

.nwx-project--two > div {
  background: linear-gradient(135deg, #5f66a2, #d69a54);
}

.nwx-project--three > div {
  background: linear-gradient(135deg, #6540a0, #bd578d);
}

.nwx-project footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background: rgba(19, 11, 43, 0.46);
}

.nwx-project b,
.nwx-project small {
  display: block;
}

.nwx-project small {
  margin-top: 4px;
  color: rgba(244, 243, 251, 0.72);
  font-size: 11px;
}

.nwx-project em {
  color: #f6b64f;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.nwx-tools {
  position: relative;
  margin-top: 36px;
  overflow: hidden;
  padding: 22px 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.nwx-tools__track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.nwx-tools span {
  padding: 12px 24px;
  border-radius: 16px;
  color: rgba(244, 243, 251, 0.72);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 700;
}

.nwx-partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.nwx-tools--static {
  mask-image: none;
}

.nwx-tools__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding-inline: 12px;
}

.nwx-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.nwx-tools-grid__card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 52px rgba(9, 5, 24, 0.24);
}

.nwx-tools-grid__card > span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 12px;
  color: #2a1906;
  background: linear-gradient(135deg, #f6b64f, #f3a442);
}

.nwx-tools-grid__card p {
  margin: 0;
  color: rgba(244, 243, 251, 0.8);
  font-size: 0.93rem;
  line-height: 1.85;
}

.nwx-partner {
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 2;
  border-radius: 16px;
  color: rgba(244, 243, 251, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.nwx-load-more {
  margin-top: 34px;
  text-align: center;
}

.nwx-load-more button {
  min-height: 40px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.nwx-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: 64px;
  padding: 48px;
  border-radius: 30px;
}

.nwx-contact__info {
  margin-top: 26px;
  color: rgba(244, 243, 251, 0.72);
  font-size: 13px;
  line-height: 1.9;
}

.nwx-form {
  display: grid;
  gap: 14px;
  border-radius: 20px;
}

.nwx-form label {
  display: grid;
  gap: 8px;
  color: rgba(244, 243, 251, 0.94);
  font-size: 12px;
  font-weight: 800;
}

.nwx-form input,
.nwx-form textarea {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 13px 16px;
  outline: none;
}

.nwx-form textarea {
  resize: vertical;
}

.nwx-form button {
  margin-top: 4px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  color: #2a1906;
  background: linear-gradient(135deg, #f6b64f, #f3a442);
  font-weight: 800;
}

.nwx-alert {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(246, 182, 79, 0.1);
  border: 1px solid rgba(246, 182, 79, 0.22);
  color: #fff;
}

.footer {
  margin-top: 0;
  padding: 0;
  background: rgba(13, 6, 31, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .site-container {
  width: min(1064px, calc(100% - 40px));
}

.footer-panel {
  padding: 64px 0 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.footer__grid {
  grid-template-columns: 1.2fr 0.75fr 1fr 1fr;
  gap: 56px;
}

.footer__grid--spaced,
.section-divider {
  display: none;
}

.footer__brand-logo {
  height: 30px;
}

.footer__text,
.footer__links,
.footer__contact-list,
.footer__bottom-inner {
  font-size: 12px;
}

.footer__title,
.footer__legal-title {
  font-size: 11px;
  letter-spacing: 0.16em;
}

.footer__bottom {
  margin-top: 48px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--nw-ease), transform 0.7s var(--nw-ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .site-header__nav {
    display: none;
  }

  .site-header__burger {
    display: inline-flex;
  }

  .nwx-hero__grid,
  .nwx-about__grid,
  .nwx-contact {
    grid-template-columns: 1fr;
  }

  .nwx-hero {
    padding-top: 112px;
  }

  .nwx-hero__copy,
  .nwx-heading--left,
  .nwx-muted {
    max-width: none;
  }
}

@media (max-width: 800px) {
  .nwx-container {
    width: min(100% - 28px, 540px);
  }

  .nwx-section {
    padding: 56px 0;
  }

  .nwx-hero {
    min-height: auto;
    padding: 96px 0 56px;
  }

  .nwx-hero__title {
    font-size: 42px;
  }

  .nwx-hero__grid {
    gap: 34px;
  }

  .nwx-services,
  .nwx-projects {
    grid-template-columns: 1fr;
  }

  .nwx-why,
  .nwx-contact {
    padding: 28px;
  }

  .nwx-why__grid,
  .nwx-stats,
  .nwx-partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nwx-contact {
    gap: 28px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 520px) {
  .site-header__bar {
    width: calc(100% - 18px);
  }

  .site-header__cta {
    display: none;
  }

  .nwx-btn {
    width: 100%;
  }

  .nwx-heading h2 {
    font-size: 28px;
  }

  .nwx-hero__title {
    font-size: 36px;
  }

  .nwx-icon-grid,
  .nwx-why__grid,
  .nwx-stats,
  .nwx-partners,
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* Continuous Lovable-style background and interaction polish. */
body {
  background: #16082f;
}

body::before {
  background:
    radial-gradient(circle at 48% 4%, rgba(130, 83, 209, 0.34), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(174, 103, 165, 0.2), transparent 18%),
    radial-gradient(circle at 18% 72%, rgba(246, 182, 79, 0.08), transparent 18%),
    linear-gradient(135deg, #110523 0%, #291357 42%, #57378a 100%);
  filter: none;
  opacity: 1;
}

body::after,
.site-shell::before {
  display: none;
}

.nwx-page {
  isolation: isolate;
  overflow: clip;
  background: transparent;
}

.nwx-page::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    radial-gradient(900px 520px at 47% 2%, rgba(133, 80, 211, 0.36), transparent 68%),
    linear-gradient(135deg, #120526 0%, #291459 44%, #553586 100%);
  background-size:
    82px 82px,
    82px 82px,
    auto,
    auto;
}

.nwx-page::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 440px at -8% 8%, rgba(255, 255, 255, 0.09), transparent 72%),
    radial-gradient(1100px 520px at 104% 16%, rgba(255, 255, 255, 0.08), transparent 70%),
    radial-gradient(1280px 500px at 8% 34%, rgba(255, 255, 255, 0.075), transparent 72%),
    radial-gradient(1120px 540px at 102% 50%, rgba(255, 255, 255, 0.08), transparent 72%),
    radial-gradient(1260px 520px at 2% 70%, rgba(255, 255, 255, 0.072), transparent 72%),
    radial-gradient(1160px 520px at 104% 86%, rgba(255, 255, 255, 0.082), transparent 72%),
    linear-gradient(120deg, transparent 0 33%, rgba(255, 255, 255, 0.035) 33.2% 33.7%, transparent 33.9% 100%);
  opacity: 0.92;
}

.nwx-section,
.nwx-hero {
  position: relative;
  background: transparent;
}

.nwx-hero__title {
  color: #fff;
}

.nwx-hero__title::first-letter {
  letter-spacing: -0.04em;
}

.nwx-hero__title,
.nwx-heading h2 {
  text-wrap: balance;
}

.nwx-shimmer,
.nwx-btn,
.nwx-service-card,
.nwx-why,
.nwx-why-card,
.nwx-stat,
.nwx-project,
.nwx-partner,
.nwx-contact,
.nwx-form,
.nwx-icon-tile,
.nwx-tools span {
  position: relative;
}

.nwx-shimmer,
.nwx-service-card,
.nwx-why-card,
.nwx-stat,
.nwx-project,
.nwx-partner,
.nwx-contact,
.nwx-form,
.nwx-icon-tile,
.nwx-tools span {
  overflow: hidden;
}

.nwx-shimmer::after,
.nwx-service-card::after,
.nwx-why-card::after,
.nwx-stat::after,
.nwx-project::after,
.nwx-partner::after,
.nwx-icon-tile::after,
.nwx-tools span::after {
  content: "";
  position: absolute;
  inset: -40%;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.18), transparent 65%);
  transform: translateX(-72%) rotate(8deg);
  transition: transform 0.85s var(--nw-ease);
}

.nwx-shimmer::after {
  animation: nwx-shimmer 4.5s var(--nw-ease) infinite;
}

.nwx-service-card:hover::after,
.nwx-why-card:hover::after,
.nwx-stat:hover::after,
.nwx-project:hover::after,
.nwx-partner:hover::after,
.nwx-icon-tile:hover::after,
.nwx-tools span:hover::after {
  transform: translateX(72%) rotate(8deg);
}

.nwx-service-card,
.nwx-why-card,
.nwx-stat,
.nwx-project,
.nwx-partner,
.nwx-icon-tile,
.nwx-tools span,
.nwx-form input,
.nwx-form textarea,
.site-header__link,
.site-header__dropdown-toggle,
.site-header__dropdown-item {
  transition:
    transform 0.38s var(--nw-ease),
    border-color 0.38s var(--nw-ease),
    background-color 0.38s var(--nw-ease),
    box-shadow 0.38s var(--nw-ease),
    color 0.38s var(--nw-ease),
    opacity 0.38s var(--nw-ease);
}

.nwx-hero-card {
  animation: nwx-float 7s ease-in-out infinite;
  transition:
    transform 0.45s var(--nw-ease),
    border-color 0.45s var(--nw-ease),
    box-shadow 0.45s var(--nw-ease);
}

.nwx-hero-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(246, 182, 79, 0.42);
  box-shadow: 0 34px 110px rgba(13, 6, 31, 0.58);
}

.nwx-btn {
  overflow: hidden;
  transition:
    transform 0.34s var(--nw-ease),
    box-shadow 0.34s var(--nw-ease),
    border-color 0.34s var(--nw-ease),
    background-color 0.34s var(--nw-ease);
}

.nwx-btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.nwx-btn--gold:hover {
  box-shadow: 0 18px 48px rgba(246, 182, 79, 0.42);
}

.nwx-btn--ghost:hover,
.nwx-load-more button:hover {
  border-color: rgba(246, 182, 79, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.site-header__bar {
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.site-header:not(.is-scrolled) .site-header__bar {
  background: rgba(20, 9, 44, 0.18);
  border-color: rgba(255, 255, 255, 0.05);
}

.site-header__link:hover,
.site-header__dropdown-toggle:hover,
.site-header__dropdown-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nwx-icon-tile {
  min-height: 216px;
  transform-origin: center;
}

.nwx-icon-tile:nth-child(1),
.nwx-icon-tile:nth-child(4) {
  animation: nwx-float 8s ease-in-out infinite;
}

.nwx-icon-tile:nth-child(2),
.nwx-icon-tile:nth-child(3) {
  animation: nwx-float 8s ease-in-out -2.5s infinite;
}

.nwx-icon-tile:hover,
.nwx-service-card:hover,
.nwx-why-card:hover,
.nwx-stat:hover,
.nwx-partner:hover,
.nwx-tools span:hover {
  transform: translateY(-7px);
  border-color: rgba(246, 182, 79, 0.42);
  box-shadow: 0 30px 86px rgba(13, 6, 31, 0.5);
}

.nwx-icon-tile--shift:hover {
  transform: translateY(17px);
}

.nwx-service-card:hover span,
.nwx-why-card:hover span {
  transform: scale(1.06) rotate(-4deg);
}

.nwx-service-card > span,
.nwx-why-card > span {
  transition: transform 0.38s var(--nw-ease);
}

.nwx-project > div {
  position: relative;
  overflow: hidden;
}

.nwx-project > div > strong {
  position: relative;
  z-index: 2;
  color: #fff;
}

.nwx-project--image > div::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(19, 11, 43, 0.16), rgba(19, 11, 43, 0.42));
}

.nwx-project--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--nw-ease);
}

.nwx-project:hover img {
  transform: scale(1.07);
}

.nwx-partner img {
  max-width: 74%;
  max-height: 58%;
  object-fit: contain;
  filter: saturate(0.9) brightness(1.08);
  opacity: 0.82;
  transition:
    filter 0.38s var(--nw-ease),
    opacity 0.38s var(--nw-ease),
    transform 0.38s var(--nw-ease);
}

.nwx-partner:hover img {
  filter: saturate(1.1) brightness(1.18);
  opacity: 1;
  transform: scale(1.04);
}

.nwx-tools:hover .nwx-tools__track {
  animation-play-state: paused;
}

.nwx-form input:focus,
.nwx-form textarea:focus {
  border-color: rgba(246, 182, 79, 0.5);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 4px rgba(246, 182, 79, 0.08);
}

.nwx-form button {
  transition:
    transform 0.34s var(--nw-ease),
    box-shadow 0.34s var(--nw-ease);
}

.nwx-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(246, 182, 79, 0.34);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 0.85s var(--nw-ease),
    transform 0.85s var(--nw-ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.nwx-services [data-reveal]:nth-child(2),
.nwx-why__grid [data-reveal]:nth-child(2),
.nwx-stats [data-reveal]:nth-child(2),
.nwx-projects [data-reveal]:nth-child(2),
.nwx-partners [data-reveal]:nth-child(2) {
  transition-delay: 0.07s;
}

.nwx-services [data-reveal]:nth-child(3),
.nwx-why__grid [data-reveal]:nth-child(3),
.nwx-stats [data-reveal]:nth-child(3),
.nwx-projects [data-reveal]:nth-child(3),
.nwx-partners [data-reveal]:nth-child(3) {
  transition-delay: 0.14s;
}

.nwx-services [data-reveal]:nth-child(n+4),
.nwx-why__grid [data-reveal]:nth-child(n+4),
.nwx-stats [data-reveal]:nth-child(n+4),
.nwx-partners [data-reveal]:nth-child(n+4) {
  transition-delay: 0.21s;
}

@keyframes nwx-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes nwx-shimmer {
  0% {
    transform: translateX(-78%) rotate(8deg);
  }
  45%,
  100% {
    transform: translateX(78%) rotate(8deg);
  }
}

@media (max-width: 1100px) {
  .nwx-icon-tile {
    min-height: 180px;
  }
}

@media (max-width: 800px) {
  .nwx-page::after {
    background:
      radial-gradient(760px 380px at 0% 10%, rgba(255, 255, 255, 0.075), transparent 72%),
      radial-gradient(720px 400px at 100% 32%, rgba(255, 255, 255, 0.076), transparent 72%),
      radial-gradient(760px 390px at 0% 62%, rgba(255, 255, 255, 0.068), transparent 72%),
      radial-gradient(720px 390px at 100% 88%, rgba(255, 255, 255, 0.074), transparent 72%);
  }

  .nwx-icon-tile {
    min-height: auto;
  }
}

.nwx-service-card.nwx-reveal.is-visible:hover,
.nwx-why-card.nwx-reveal.is-visible:hover,
.nwx-stat.nwx-reveal.is-visible:hover,
.nwx-project.nwx-reveal.is-visible:hover,
.nwx-partner.nwx-reveal.is-visible:hover {
  transform: translateY(-7px) scale(1);
}

/* Reference background, continuous atmosphere, RTL fixes, and final overrides. */
body {
  padding-top: 0 !important;
  background: #140628 !important;
  overflow-x: hidden;
}

body::before,
body::after,
.site-shell::before,
.nwx-page::before,
.nwx-page::after {
  display: none !important;
  content: none !important;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  --parallax-grid-y: 0px;
  --parallax-grid-scale: 1.04;
  --parallax-wave-a-y: 0px;
  --parallax-wave-b-x: 0px;
  --parallax-wave-b-y: 0px;
  --parallax-orb-fast-y: 0px;
  --parallax-orb-slow-y: 0px;
  --parallax-gloss-opacity: 0.8;
}

.grain::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: soft-light;
}

.site-atmosphere {
  position: fixed;
  inset: 0;
  z-index: -5;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% -6%, rgba(150, 102, 235, 0.46), transparent 32%),
    linear-gradient(135deg, #15052c 0%, #2d1460 45%, #5a3a8e 100%);
}

.site-atmosphere__grid {
  position: absolute;
  inset: -12%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.08;
  transform: translate3d(0, var(--parallax-grid-y), 0) scale(var(--parallax-grid-scale));
  transform-origin: center top;
}

.site-atmosphere__wave {
  position: absolute;
  width: 128vw;
  max-width: none;
  filter: blur(0.2px);
  opacity: 0.55;
}

.site-atmosphere__wave--a {
  top: 13%;
  inset-inline-start: -18vw;
  transform: translate3d(0, var(--parallax-wave-a-y), 0);
}

.site-atmosphere__wave--b {
  top: 55%;
  inset-inline-end: -16vw;
  transform: translate3d(var(--parallax-wave-b-x), var(--parallax-wave-b-y), 0);
  opacity: 0.48;
}

.site-atmosphere__orbs {
  position: absolute;
  inset: -8%;
}

.site-atmosphere__orbs--fast {
  transform: translate3d(0, var(--parallax-orb-fast-y), 0);
}

.site-atmosphere__orbs--slow {
  transform: translate3d(0, var(--parallax-orb-slow-y), 0);
}

.site-atmosphere__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.4;
}

.site-atmosphere__orb--gold {
  top: 8%;
  inset-inline-end: 12%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(247, 182, 79, 0.3), transparent 72%);
}

.site-atmosphere__orb--violet {
  top: 18%;
  inset-inline-start: 6%;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(126, 86, 212, 0.28), transparent 70%);
}

.site-atmosphere__orb--rose {
  bottom: 14%;
  inset-inline-end: 22%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(182, 111, 178, 0.22), transparent 72%);
}

.site-atmosphere__orb--indigo {
  bottom: 26%;
  inset-inline-start: -1%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(109, 68, 180, 0.24), transparent 74%);
}

.site-atmosphere__orb--plum {
  bottom: -4%;
  inset-inline-end: -3%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(218, 170, 255, 0.18), transparent 76%);
}

.site-atmosphere__gloss {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(210, 164, 255, 0.14), transparent 26%),
    radial-gradient(circle at 50% 42%, rgba(176, 130, 255, 0.11), transparent 18%);
  opacity: var(--parallax-gloss-opacity);
}

.site-main,
.site-header,
.footer,
.nwx-page {
  position: relative;
  z-index: 1;
}

.site-header,
.footer,
.nwx-page {
  direction: inherit !important;
}

.nwx-page {
  background: transparent !important;
  isolation: isolate;
  overflow: clip;
}

.nwx-hero,
.nwx-section {
  position: relative;
  background: transparent !important;
}

.nwx-heading--left,
.nwx-about__copy,
.nwx-hero__copy,
.nwx-contact > div,
.nwx-project footer,
.footer__grid,
.footer__bottom-inner {
  text-align: start;
}

.nwx-hero-logo {
  inset-inline-start: 20px;
  left: auto;
}

.site-header__dropdown-menu {
  inset-inline-start: 0;
  inset-inline-end: auto;
}

body[dir="rtl"] .site-header__dropdown-menu {
  inset-inline-start: auto;
  inset-inline-end: 0;
}


body[dir="rtl"] .nwx-heading--left,
body[dir="rtl"] .nwx-about__copy,
body[dir="rtl"] .nwx-hero__copy {
  margin-inline-start: auto;
  margin-inline-end: 0;
}

body[dir="rtl"] .nwx-heading h2,
body[dir="rtl"] .nwx-hero__title,
body[dir="rtl"] .nwx-stat strong {
  font-family: "IBM Plex Sans Arabic", "Poppins", sans-serif;
}

body[dir="rtl"] .nwx-link,
body[dir="rtl"] .nwx-service-card small {
  flex-direction: row-reverse;
}

.nwx-tools {
  background: rgba(255, 255, 255, 0.035);
}

.nwx-tools span,
.nwx-service-card,
.nwx-why-card,
.nwx-stat,
.nwx-project,
.nwx-partner,
.nwx-icon-tile,
.nwx-contact,
.nwx-form,
.site-header__bar {
  box-shadow: 0 22px 72px rgba(13, 6, 31, 0.34);
}
.nwx-why-card{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

}
.nwx-service-card:hover,
.nwx-why-card:hover,
.nwx-stat:hover,
.nwx-project:hover,
.nwx-partner:hover,
.nwx-icon-tile:hover {
  box-shadow: 0 32px 92px rgba(13, 6, 31, 0.48);
}

@media (max-width: 960px) {
  .site-atmosphere__wave {
    width: 150vw;
  }

  .site-atmosphere__wave--a {
    top: 20%;
    inset-inline-start: -34vw;
  }

  .site-atmosphere__wave--b {
    top: 66%;
    inset-inline-end: -30vw;
  }

  .site-atmosphere__grid {
    background-size: 66px 66px;
  }
}

@media (max-width: 767px) {
  .grain::after {
    opacity: 0.03;
  }

  .site-atmosphere__grid {
    transform: none;
    opacity: 0.06;
  }

  .site-atmosphere__wave,
  .site-atmosphere__orbs {
    transform: none !important;
  }

  .site-atmosphere__orb--gold,
  .site-atmosphere__orb--violet,
  .site-atmosphere__orb--rose,
  .site-atmosphere__orb--indigo,
  .site-atmosphere__orb--plum {
    filter: blur(54px);
    opacity: 0.26;
  }
}

/* Final reference-alignment pass for the shared atmosphere. */
body {
  background:
    radial-gradient(circle at 50% 22%, rgba(150, 102, 235, 0.42), transparent 38%),
    linear-gradient(135deg, #140628 0%, #2b1459 45%, #5d3c91 100%) !important;
}

.grain::after {
  position: absolute;
  inset: 0;
}

.site-atmosphere {
  position: absolute;
  inset: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 50% -8%, rgba(150, 102, 235, 0.5), transparent 34%),
    linear-gradient(135deg, #15052c 0%, #2d1460 45%, #5a3a8e 100%);
}

.site-atmosphere__grid {
  opacity: 0.06;
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000, transparent 75%);
  mask-image: radial-gradient(circle at 50% 30%, #000, transparent 75%);
}

.site-atmosphere__wave {
  opacity: 0.42;
}

.site-atmosphere__wave--a {
  top: 18%;
}

.site-atmosphere__wave--b {
  top: 62%;
  opacity: 0.34;
}

.site-atmosphere__gloss {
  background:
    radial-gradient(circle at 50% -10%, rgba(150, 102, 235, 0.28), transparent 55%),
    radial-gradient(circle at 50% 42%, rgba(176, 130, 255, 0.08), transparent 18%);
}

.footer {
  background: transparent;
  border-top: 0;
  padding-bottom: 2rem;
}

.footer-panel {
  padding-top: 52px;
  background: linear-gradient(180deg, rgba(21, 8, 44, 0.28), rgba(21, 8, 44, 0.42));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Final continuity pass: one shared background, tighter header, cleaner menus. */
body {
  background: #140628 !important;
  overflow-x: hidden;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  background: transparent;
}

.grain::after {
  position: fixed;
  inset: 0;
  z-index: -4;
}

.site-atmosphere {
  position: fixed !important;
  inset: 0 !important;
  min-height: 100vh !important;
  z-index: -5;
  background:
    radial-gradient(circle at 50% 12%, rgba(153, 109, 236, 0.48), transparent 30%),
    linear-gradient(135deg, #140628 0%, #2b1459 44%, #5c3a8f 100%) !important;
}

.site-atmosphere__grid {
  opacity: 0.07;
  background-size: 70px 70px;
}

.site-atmosphere__wave {
  opacity: 0.4;
}

.site-atmosphere__wave--a {
  top: 16%;
}

.site-atmosphere__wave--b {
  top: 64%;
  opacity: 0.32;
}

.site-atmosphere__gloss {
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 173, 255, 0.16), transparent 28%),
    radial-gradient(circle at 50% 42%, rgba(176, 130, 255, 0.09), transparent 20%);
}

.site-header {
  padding-top: 12px;
}

.site-header.is-scrolled {
  padding-top: 8px;
}

.site-header__bar {
  width: min(1460px, calc(100% - 28px));
  max-width: 1460px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(25, 14, 52, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 64px rgba(13, 6, 31, 0.28);
}

.site-header.is-scrolled .site-header__bar {
  background: rgba(21, 14, 43, 0.78);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 72px rgba(13, 6, 31, 0.36);
}

.site-header__brand-logo {
  height: 34px;
}

.site-header__nav {
  gap: 4px;
}

.site-header__link,
.site-header__dropdown-toggle {
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
}

.site-header__link.is-active,
.site-header__dropdown-toggle.is-active,
.site-header__link:hover,
.site-header__dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.site-header__dropdown {
  position: relative;
}

.site-header__dropdown-menu {
  top: calc(100% + 12px);
  min-width: 250px;
  padding: 0.55rem;
  border-radius: 20px;
  background: rgba(17, 10, 37, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(8, 4, 21, 0.5);
  transform: translateY(12px) scale(0.98);
  transform-origin: top center;
}

.site-header__dropdown:hover .site-header__dropdown-menu,
.site-header__dropdown:focus-within .site-header__dropdown-menu {
  transform: translateY(0) scale(1);
}

.site-header__dropdown-item {
  padding: 0.82rem 0.95rem;
  border-radius: 14px;
  font-size: 0.9rem;
}

.site-header__actions {
  gap: 10px;
}

.site-header .button,
.site-header__burger {
  min-height: 40px;
}

.site-header__lang {
  min-width: 66px;
}

.site-header__cta {
  padding-inline: 1.35rem;
}

.mobile-menu__overlay {
  background: rgba(6, 4, 14, 0.66);
  backdrop-filter: blur(10px);
}

.mobile-menu__panel {
  width: min(88vw, 380px);
  padding: 1.1rem;
  background: rgba(16, 10, 33, 0.96);
}

.mobile-menu__nav {
  gap: 0.35rem;
}

.mobile-menu__link,
.mobile-menu__summary,
.mobile-menu__sub-link {
  border-radius: 16px;
}

.mobile-menu__link,
.mobile-menu__summary {
  padding: 0.92rem 1rem;
}

.mobile-menu__sub-link {
  padding: 0.78rem 0.95rem;
}

@media (max-width: 1200px) {
  .site-header__bar {
    width: min(100%, calc(100% - 24px));
  }
}

@media (max-width: 900px) {
  .site-header__bar {
    padding: 10px 12px;
  }

  .site-header__brand-logo {
    height: 30px;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding-top: 10px;
  }

  .site-header__bar {
    width: calc(100% - 18px);
    padding: 9px 10px;
    border-radius: 28px;
  }

  .site-header__cta {
    display: none;
  }
}

/* Final structural overrides */
html,
body {
  background:
    radial-gradient(circle at 50% 16%, rgba(143, 103, 220, 0.28), transparent 22%),
    linear-gradient(180deg, #211045 0%, #170a35 42%, #1a0c3b 100%);
  background-color: #170a35;
}

body {
  color: #f7f3ff;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.site-main {
  position: relative;
  z-index: 2;
}

.site-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 6000;
  pointer-events: none;
}

.site-header__bar {
  position: relative;
  overflow: visible;
  pointer-events: auto;
}

.site-header__nav {
  align-items: center;
}

.site-header__link,
.site-header__dropdown-toggle,
.button,
.page-btn,
.nwx-btn {
  transition:
    transform 0.28s ease,
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    color 0.28s ease,
    opacity 0.28s ease;
}

.site-header__link:hover,
.site-header__dropdown-toggle:hover,
.button:hover,
.page-btn:hover,
.nwx-btn:hover {
  transform: translateY(-2px);
}

.site-header__link:focus-visible,
.site-header__dropdown-toggle:focus-visible,
.site-header__dropdown-item:focus-visible,
.button:focus-visible,
.page-btn:focus-visible,
.nwx-btn:focus-visible,
.mobile-menu__link:focus-visible,
.mobile-menu__summary:focus-visible,
.mobile-menu__sub-link:focus-visible {
  outline: 2px solid rgba(246, 182, 79, 0.95);
  outline-offset: 3px;
}

.site-header__dropdown {
  position: relative;
}

.site-header__dropdown::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: calc(100% - 2px);
  height: 18px;
}

.site-header__dropdown-menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 6100;
  transition:
    opacity 0.16s ease,
    transform 0.16s ease,
    visibility 0.16s ease;
}

.site-header__dropdown.is-open .site-header__dropdown-menu,
.site-header__dropdown:hover .site-header__dropdown-menu,
.site-header__dropdown:focus-within .site-header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.site-header__dropdown-item {
  font-weight: 700;
}

.site-header__dropdown-item:hover,
.site-header__dropdown-item:focus-visible {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(246, 182, 79, 0.2);
}

.site-header__lang,
.site-header__cta {
  box-shadow: 0 16px 42px rgba(11, 5, 26, 0.26);
}

.site-header__lang {
  min-width: 74px;
}

.site-header__lang.is-loading,
.mobile-menu__lang.is-loading {
  opacity: 0.68;
  pointer-events: none;
}

.button--gold,
.page-btn--gold,
.nwx-btn--gold {
  box-shadow: 0 18px 48px rgba(246, 182, 79, 0.3);
}

.button--gold:hover,
.page-btn--gold:hover,
.nwx-btn--gold:hover {
  box-shadow: 0 24px 56px rgba(246, 182, 79, 0.38);
}

.button--soft,
.page-btn--soft,
.nwx-btn--ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.065);
}

.mobile-menu {
  z-index: 6500;
}

.mobile-menu__panel {
  box-shadow: 0 30px 80px rgba(5, 4, 12, 0.58);
}

.mobile-menu__link.is-active,
.mobile-menu__summary.is-active {
  color: #fff;
  border-color: rgba(246, 182, 79, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.footer {
  position: relative;
  z-index: 2;
  padding-top: 1rem;
}

.footer-panel {
  background:
    linear-gradient(180deg, rgba(43, 24, 83, 0.82), rgba(22, 11, 45, 0.92)),
    rgba(24, 12, 48, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 90px rgba(8, 4, 20, 0.34);
}

.footer__title {
  margin-bottom: 1rem;
}

.footer__text,
.footer__links a,
.footer__contact-item,
.footer__bottom-inner {
  color: rgba(244, 240, 252, 0.76);
}

.footer__links a:hover,
.footer__contact-item a:hover {
  color: #fff;
}

.footer__quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.4rem 0 1.5rem;
}

.footer__quick-actions .button {
  min-height: 44px;
}

.footer__social {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.footer__social:hover {
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .site-header__dropdown::after,
  .site-header__dropdown-menu {
    display: none;
  }
}
