@font-face {
  font-family: "Vazirmatn";
  src: url("assets/fonts/vazirmatn/Vazirmatn-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("assets/fonts/vazirmatn/Vazirmatn-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("assets/fonts/vazirmatn/Vazirmatn-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy-1000: #010815;
  --navy-950: #020d20;
  --navy-900: #03152f;
  --navy-850: #061d3f;
  --navy-800: #082958;
  --blue-700: #0b4fc4;
  --blue-600: #0d65ef;
  --blue-500: #2685ff;
  --blue-300: #77b8ff;
  --green-600: #009d6b;
  --green-500: #0ac98b;
  --green-300: #67edbd;
  --orange-600: #e85900;
  --orange-500: #ff7100;
  --orange-300: #ffad5e;
  --ink: #0b1b34;
  --ink-soft: #304563;
  --muted: #64748e;
  --paper: #f5f8fc;
  --paper-blue: #eef5ff;
  --white: #fff;
  --line: #dce6f2;
  --line-dark: rgba(119, 184, 255, .16);
  --shadow-sm: 0 12px 30px rgba(5, 27, 62, .08);
  --shadow-md: 0 24px 70px rgba(5, 27, 62, .13);
  --shadow-blue: 0 20px 58px rgba(13, 101, 239, .23);
  --radius-sm: 15px;
  --radius-md: 23px;
  --radius-lg: 34px;
  --content: 1400px;
  font-family: "Vazirmatn", Tahoma, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.8;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  color: var(--white);
  background: var(--blue-600);
}

.skip-link {
  position: fixed;
  z-index: 999;
  inset: 10px auto auto 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  min-height: 86px;
  padding: 10px max(24px, calc((100vw - var(--content)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: linear-gradient(to bottom, rgba(1, 8, 21, .86), rgba(1, 8, 21, .34));
  border-bottom: 1px solid transparent;
  transition: min-height .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
  backdrop-filter: blur(12px);
}

.site-header.scrolled {
  min-height: 74px;
  background: rgba(2, 13, 32, .94);
  border-color: rgba(119, 184, 255, .12);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .16);
}

.brand {
  min-width: 330px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand img {
  width: 78px;
  height: 66px;
  object-fit: contain;
  transition: width .25s ease, height .25s ease;
}

.scrolled .brand img {
  width: 66px;
  height: 56px;
}

.brand-copy {
  display: grid;
  line-height: 1.35;
}

.brand-copy strong {
  font-size: 18px;
  letter-spacing: -.02em;
}

.brand-copy small {
  margin-top: 4px;
  color: #abc4e6;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .13em;
  direction: ltr;
  text-align: right;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: clamp(17px, 1.7vw, 30px);
  font-size: 13px;
  font-weight: 760;
}

.main-menu > a {
  position: relative;
  white-space: nowrap;
}

.main-menu > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-500), var(--blue-500));
  border-radius: 999px;
  transition: width .25s ease;
}

.main-menu > a:not(.nav-cta):hover::after,
.main-menu > a:not(.nav-cta):focus-visible::after {
  width: 100%;
}

.nav-cta {
  min-height: 45px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  box-shadow: 0 12px 28px rgba(255, 113, 0, .25);
  transition: transform .25s ease, box-shadow .25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 34px rgba(255, 113, 0, .34);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, .05);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: max(770px, 100svh);
  padding: 132px max(32px, calc((100vw - var(--content)) / 2)) 98px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: clamp(36px, 5vw, 90px);
  overflow: hidden;
  isolation: isolate;
  direction: ltr;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 26%, rgba(13, 101, 239, .28), transparent 32%),
    radial-gradient(circle at 19% 78%, rgba(10, 201, 139, .13), transparent 34%),
    linear-gradient(128deg, #010815 0%, #03152f 50%, #06275b 100%);
}

.hero-artwork {
  position: absolute;
  z-index: -4;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  background-image: url("assets/images/nazari-co-hero.webp?v=20260724-2");
  background-repeat: no-repeat;
  background-position: center 60%;
  background-size: cover;
  filter: saturate(1.04) contrast(1.03);
}

.hero-background {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 1;
  background-image:
    linear-gradient(90deg, rgba(1, 8, 21, .99) 0%, rgba(2, 13, 32, .97) 32%, rgba(2, 13, 32, .90) 46%, rgba(2, 13, 32, .35) 60%, rgba(2, 13, 32, .06) 78%),
    linear-gradient(180deg, rgba(1, 8, 21, .52) 0%, rgba(1, 8, 21, .05) 24%, rgba(1, 8, 21, .14) 74%, rgba(1, 8, 21, .86) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 8, 21, .64), transparent 19%),
    linear-gradient(rgba(119, 184, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 184, 255, .025) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  mask-image: linear-gradient(to right, black, rgba(0, 0, 0, .72) 58%, transparent 88%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 980px;
  height: 980px;
  left: 44%;
  top: 25%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(38, 133, 255, .08);
  border-radius: 50%;
  box-shadow:
    0 0 0 110px rgba(38, 133, 255, .015),
    0 0 0 250px rgba(38, 133, 255, .01);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-copy {
  grid-column: 1;
  direction: rtl;
}

.eyebrow,
.kicker {
  color: var(--green-300);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .025em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
}

.eyebrow > span {
  width: 35px;
  height: 2px;
  background: var(--orange-500);
  box-shadow: 0 0 14px rgba(255, 113, 0, .65);
}

.hero h1 {
  margin: 18px 0 22px;
  max-width: 690px;
  font-size: clamp(46px, 5.2vw, 78px);
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: -.055em;
}

.hero h1 em {
  color: var(--orange-500);
  font-style: normal;
  text-shadow: 0 0 34px rgba(255, 113, 0, .18);
}

.hero-copy > p {
  max-width: 680px;
  margin: 0;
  color: #bacce4;
  font-size: clamp(16px, 1.25vw, 19px);
}

.hero-actions {
  margin-top: 31px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 850;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  box-shadow: 0 16px 38px rgba(255, 113, 0, .25);
}

.button-primary:hover {
  box-shadow: 0 20px 46px rgba(255, 113, 0, .34);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(119, 184, 255, .35);
  background: rgba(38, 133, 255, .055);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: rgba(119, 184, 255, .65);
  background: rgba(38, 133, 255, .11);
}

.hero-pillars {
  margin-top: 37px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  color: #9eb4d0;
  font-size: 12px;
}

.hero-pillars span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-pillars b {
  min-width: 26px;
  color: var(--blue-300);
  font-size: 11px;
  direction: ltr;
  text-align: center;
}

.hero-visual {
  min-height: 620px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.visual-grid {
  position: absolute;
  width: 105%;
  height: 58%;
  bottom: -3%;
  transform: rotateX(66deg);
  background-image:
    linear-gradient(rgba(38, 133, 255, .23) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 133, 255, .23) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse, black 14%, transparent 70%);
}

.logo-stage {
  position: relative;
  z-index: 5;
  width: min(49%, 345px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translateY(-20px);
  animation: logo-float 5.2s ease-in-out infinite;
}

.logo-stage img {
  position: relative;
  z-index: 2;
  width: 100%;
  filter:
    drop-shadow(0 28px 24px rgba(0, 0, 0, .44))
    drop-shadow(0 0 21px rgba(38, 133, 255, .24));
}

.logo-glow {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 133, 255, .36), rgba(10, 201, 139, .07) 48%, transparent 70%);
  filter: blur(18px);
}

.platform {
  position: absolute;
  z-index: 3;
  left: 50%;
  width: 64%;
  height: 170px;
  border: 1px solid rgba(38, 133, 255, .62);
  border-radius: 44px;
  background:
    linear-gradient(180deg, rgba(14, 74, 153, .74), rgba(2, 17, 43, .94)),
    linear-gradient(90deg, transparent, rgba(10, 201, 139, .1), transparent);
  box-shadow:
    inset 0 0 0 7px rgba(2, 13, 32, .58),
    inset 0 0 28px rgba(38, 133, 255, .2),
    0 20px 50px rgba(0, 0, 0, .42),
    0 0 22px rgba(38, 133, 255, .24);
  transform: translateX(-50%) rotateX(62deg) rotateZ(-3deg);
}

.platform::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(103, 237, 189, .18);
  border-radius: 32px;
}

.platform-back {
  bottom: 12%;
  opacity: .62;
  transform: translateX(-50%) translateY(68px) rotateX(62deg) rotateZ(-3deg);
}

.platform-middle {
  bottom: 18%;
  opacity: .83;
  transform: translateX(-50%) translateY(32px) rotateX(62deg) rotateZ(-3deg);
}

.platform-front {
  bottom: 24%;
}

.orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(38, 133, 255, .24);
  border-radius: 50%;
  transform: rotateX(66deg) rotateZ(-11deg);
}

.orbit::after {
  content: "";
  position: absolute;
  top: 9%;
  left: 19%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 16px var(--orange-500);
}

.orbit-one {
  width: 78%;
  height: 53%;
  animation: orbit 14s linear infinite;
}

.orbit-two {
  width: 94%;
  height: 64%;
  border-color: rgba(10, 201, 139, .18);
  animation: orbit-reverse 19s linear infinite;
}

.float-card {
  position: absolute;
  z-index: 7;
  width: 160px;
  padding: 13px 15px;
  display: grid;
  border: 1px solid rgba(119, 184, 255, .2);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(11, 60, 127, .55), rgba(2, 13, 32, .68));
  box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
  backdrop-filter: blur(13px);
}

.float-card b {
  color: var(--blue-300);
  font-size: 10px;
  letter-spacing: .08em;
  direction: ltr;
}

.float-card span {
  color: #d4e2f4;
  font-size: 11px;
}

.card-ai {
  top: 12%;
  right: 2%;
}

.card-cloud {
  top: 38%;
  left: 0;
}

.card-iot {
  right: 8%;
  bottom: 13%;
}

.card-data {
  left: 8%;
  bottom: 6%;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 28px;
  left: 50%;
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-300);
  transform: translateX(-50%);
  animation: scroll-cue 2s ease-in-out infinite;
}

.snapshot {
  position: relative;
  z-index: 5;
  width: min(calc(100% - 44px), 1280px);
  margin: -48px auto 45px;
  padding: 27px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  border: 1px solid rgba(12, 78, 174, .1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-md);
}

.snapshot article {
  min-height: 88px;
  padding: 6px 22px;
  display: grid;
  align-content: center;
  border-left: 1px solid var(--line);
}

.snapshot article:last-child {
  border-left: 0;
}

.snapshot strong {
  color: var(--navy-900);
  font-size: 25px;
  line-height: 1.3;
  direction: ltr;
  text-align: right;
}

.snapshot span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.section {
  max-width: var(--content);
  margin-inline: auto;
  padding: 95px 32px;
}

.section-heading {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: end;
}

.section-heading h2,
.process-intro h2,
.about-copy h2,
.legal-heading h2,
.contact-copy h2 {
  margin: 8px 0 0;
  font-size: clamp(31px, 3.15vw, 48px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -.035em;
}

.section-heading .kicker,
.about-copy .kicker,
.legal-heading .kicker {
  color: var(--blue-600);
}

.section-heading > p,
.legal-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 415px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 13px 42px rgba(5, 27, 62, .055);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(13, 101, 239, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(13, 101, 239, .025);
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(13, 101, 239, .32);
  box-shadow: 0 24px 58px rgba(5, 27, 62, .12);
}

.service-card-featured {
  color: var(--white);
  border-color: rgba(38, 133, 255, .3);
  background:
    radial-gradient(circle at 100% 100%, rgba(10, 201, 139, .16), transparent 40%),
    linear-gradient(145deg, var(--navy-900), var(--navy-800));
  box-shadow: 0 22px 54px rgba(3, 21, 47, .2);
}

.service-card-featured::after {
  border-color: rgba(103, 237, 189, .12);
  box-shadow: 0 0 0 28px rgba(103, 237, 189, .025);
}

.service-number {
  position: absolute;
  top: 24px;
  left: 25px;
  color: #c7d5e8;
  font-size: 11px;
  font-weight: 800;
  direction: ltr;
}

.service-card-featured .service-number {
  color: rgba(255, 255, 255, .4);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 17px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  box-shadow: 0 12px 26px rgba(13, 101, 239, .25);
  font-size: 13px;
  font-weight: 900;
  direction: ltr;
}

.service-card:nth-child(3) .service-icon {
  background: linear-gradient(135deg, var(--green-500), #087aa6);
}

.service-card:nth-child(4) .service-icon {
  background: linear-gradient(135deg, #5e43d7, var(--blue-700));
}

.service-card:nth-child(5) .service-icon {
  background: linear-gradient(135deg, var(--orange-500), #de355b);
}

.service-card:nth-child(6) .service-icon {
  background: linear-gradient(135deg, var(--navy-800), #147b90);
}

.service-card h3 {
  margin: 0 0 11px;
  font-size: 21px;
  font-weight: 880;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.service-card-featured p {
  color: #bdcce1;
}

.service-card ul {
  margin: 19px 0 0;
  padding: 17px 0 0;
  display: grid;
  gap: 7px;
  list-style: none;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
}

.service-card-featured ul {
  color: #d3dfef;
  border-color: rgba(255, 255, 255, .11);
}

.service-card li::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 9px;
  display: inline-block;
  border-radius: 50%;
  background: var(--green-500);
}

.portfolio-section {
  padding: 104px max(32px, calc((100vw - var(--content)) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 88% 5%, rgba(13, 101, 239, .24), transparent 25%),
    radial-gradient(circle at 7% 68%, rgba(10, 201, 139, .1), transparent 23%),
    linear-gradient(145deg, var(--navy-1000), var(--navy-900) 58%, #082657);
}

.section-heading-light h2 {
  color: var(--white);
}

.section-heading-light > p {
  color: #9fb3ce;
}

.portfolio-filters {
  margin-bottom: 27px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-button {
  min-height: 40px;
  padding: 0 17px;
  color: #aebfD5;
  border: 1px solid rgba(119, 184, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .025);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.filter-button:hover,
.filter-button:focus-visible {
  color: var(--white);
  border-color: rgba(119, 184, 255, .42);
}

.filter-button.active {
  color: var(--white);
  border-color: var(--blue-600);
  background: var(--blue-600);
  box-shadow: 0 10px 24px rgba(13, 101, 239, .22);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.project-card {
  position: relative;
  min-height: 336px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(119, 184, 255, .14);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .018));
  box-shadow: 0 17px 42px rgba(0, 0, 0, .12);
  transition: transform .3s ease, border-color .3s ease, background .3s ease, opacity .25s ease;
}

.project-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: -90px;
  bottom: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 133, 255, .14), transparent 68%);
}

.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-7px);
  border-color: rgba(119, 184, 255, .42);
  background: linear-gradient(145deg, rgba(13, 101, 239, .13), rgba(255, 255, 255, .025));
}

.project-card-featured {
  grid-column: span 2;
  padding-inline: 28px;
  background:
    radial-gradient(circle at 15% 100%, rgba(10, 201, 139, .13), transparent 30%),
    linear-gradient(135deg, rgba(13, 101, 239, .19), rgba(255, 255, 255, .035));
}

.project-card.hidden {
  display: none;
}

.project-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-index {
  color: rgba(255, 255, 255, .38);
  font-size: 10px;
  font-weight: 800;
  direction: ltr;
}

.project-external {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--blue-300);
  border: 1px solid rgba(119, 184, 255, .16);
  border-radius: 50%;
  transition: color .2s ease, background .2s ease;
}

.project-card:hover .project-external {
  color: var(--navy-900);
  background: var(--green-300);
}

.project-mark {
  width: 50px;
  height: 50px;
  margin: 18px 0 15px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 15px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), #4438b7);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .17);
  font-size: 15px;
  font-weight: 900;
  direction: ltr;
}

.almaloo-mark {
  background: linear-gradient(135deg, var(--green-500), var(--blue-600));
}

.sms-mark {
  background: linear-gradient(135deg, var(--orange-500), #e42f61);
  font-size: 10px;
}

.event-mark {
  background: linear-gradient(135deg, #7655eb, var(--blue-600));
}

.finance-mark,
.money-mark {
  background: linear-gradient(135deg, var(--green-500), #147e9b);
}

.convert-mark,
.photo-mark {
  background: linear-gradient(135deg, #3369de, #6b42d9);
}

.edu-mark {
  background: linear-gradient(135deg, #145cb3, var(--orange-500));
  font-size: 11px;
}

.flour-mark,
.shop-mark {
  background: linear-gradient(135deg, #9a6a25, #db9a38);
}

.qr-mark,
.qrneshan-mark {
  background: linear-gradient(135deg, #213c78, #159274);
}

.media-mark {
  background: linear-gradient(135deg, #195de1, #0fa2ae);
}

.culture-mark,
.memorial-mark,
.quran-mark {
  background: linear-gradient(135deg, #08623f, #b99133);
}

.profile-mark {
  background: linear-gradient(135deg, var(--blue-600), var(--orange-500));
  font-size: 11px;
}

.project-type {
  color: var(--green-300);
  font-size: 10px;
  font-weight: 800;
}

.project-card h3 {
  margin: 4px 0 7px;
  font-size: 18px;
  font-weight: 880;
}

.project-card p {
  margin: 0 0 16px;
  color: #9fb3ce;
  font-size: 12px;
  line-height: 1.75;
}

.project-domain {
  position: relative;
  z-index: 2;
  margin-top: auto;
  color: var(--blue-300);
  font-size: 10px;
  direction: ltr;
  text-align: right;
}

.portfolio-note {
  margin: 23px 0 0;
  color: #7890ae;
  font-size: 11px;
}

.expertise-layout {
  display: grid;
  grid-template-columns: .83fr 1.17fr;
  gap: 20px;
}

.expertise-core {
  position: relative;
  min-height: 615px;
  padding: 45px 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 32%, rgba(13, 101, 239, .29), transparent 31%),
    radial-gradient(circle at 90% 100%, rgba(10, 201, 139, .16), transparent 32%),
    linear-gradient(145deg, var(--navy-1000), var(--navy-800));
  box-shadow: 0 30px 70px rgba(3, 21, 47, .2);
}

.expertise-core::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(119, 184, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 184, 255, .04) 1px, transparent 1px);
  background-size: 31px 31px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

.expertise-logo {
  position: absolute;
  z-index: 2;
  top: 54px;
  right: 50%;
  width: 220px;
  transform: translateX(50%);
}

.expertise-logo span {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: rgba(13, 101, 239, .35);
  filter: blur(30px);
}

.expertise-logo img {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, .35));
}

.expertise-core > *:not(.expertise-logo) {
  position: relative;
  z-index: 3;
}

.expertise-core h3 {
  margin: 7px 0 11px;
  font-size: 27px;
  line-height: 1.45;
}

.expertise-core p {
  margin: 0;
  color: #afc2dc;
  font-size: 13px;
}

.core-flow {
  margin-top: 24px;
  padding-top: 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  border-top: 1px solid rgba(255, 255, 255, .11);
  color: var(--blue-300);
  font-size: 10px;
  font-weight: 850;
  direction: ltr;
}

.core-flow i {
  color: rgba(255, 255, 255, .3);
  font-style: normal;
}

.expertise-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.expertise-group {
  min-height: 300px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(5, 27, 62, .055);
}

.group-label {
  color: var(--blue-600);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  direction: ltr;
}

.expertise-group h3 {
  margin: 7px 0 19px;
  font-size: 18px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-list span {
  padding: 6px 10px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: 10px;
  direction: ltr;
}

.process-section {
  max-width: var(--content);
  margin: 20px auto 110px;
  padding: 72px 55px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 75px;
  color: var(--white);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 95% 0%, rgba(10, 201, 139, .13), transparent 27%),
    linear-gradient(135deg, var(--navy-900), var(--navy-800));
  box-shadow: 0 30px 75px rgba(3, 21, 47, .18);
}

.process-intro h2 {
  margin-bottom: 15px;
}

.process-intro p {
  margin: 0;
  color: #aebfD5;
  font-size: 13px;
}

.process-list {
  margin: 0;
  padding: 0;
  display: grid;
  list-style: none;
}

.process-list li {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.process-list li:last-child {
  border-bottom: 0;
}

.process-list li > span {
  color: var(--green-300);
  font-size: 11px;
  font-weight: 900;
  direction: ltr;
}

.process-list h3 {
  margin: 0;
  font-size: 16px;
}

.process-list p {
  margin: 3px 0 0;
  color: #9fb3ce;
  font-size: 11px;
}

.about-section {
  padding: 105px max(32px, calc((100vw - var(--content)) / 2));
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  background: var(--white);
}

.about-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 45%, rgba(13, 101, 239, .18), transparent 37%),
    linear-gradient(145deg, #edf4ff, #f7fbff);
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 101, 239, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 101, 239, .055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.about-rings {
  position: relative;
  width: 390px;
  max-width: 77%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.about-rings > span {
  position: absolute;
  border: 1px solid rgba(13, 101, 239, .15);
  border-radius: 50%;
}

.about-rings > span:nth-child(1) {
  inset: 0;
}

.about-rings > span:nth-child(2) {
  inset: 14%;
  border-style: dashed;
  animation: ring-flat 25s linear infinite;
}

.about-rings > span:nth-child(3) {
  inset: 27%;
  background: rgba(255, 255, 255, .56);
  box-shadow: 0 18px 70px rgba(13, 101, 239, .12);
}

.about-rings img {
  position: relative;
  z-index: 2;
  width: 46%;
  filter: drop-shadow(0 22px 22px rgba(5, 27, 62, .19));
}

.about-stat {
  position: absolute;
  right: 28px;
  bottom: 29px;
  min-width: 142px;
  padding: 16px 19px;
  display: grid;
  border: 1px solid rgba(13, 101, 239, .14);
  border-radius: 17px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.about-stat strong {
  color: var(--blue-600);
  font-size: 28px;
  direction: ltr;
  text-align: right;
}

.about-stat span {
  color: var(--muted);
  font-size: 11px;
}

.about-copy > p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.leadership-card {
  margin-top: 28px;
  padding: 18px;
  display: grid;
  grid-template-columns: 54px 1fr 40px;
  gap: 15px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--paper);
}

.leadership-initials {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-600), var(--green-600));
  font-size: 12px;
  font-weight: 900;
  direction: ltr;
}

.leadership-card > div:nth-child(2) {
  display: grid;
}

.leadership-card small {
  color: var(--blue-600);
  font-size: 9px;
  font-weight: 800;
}

.leadership-card strong {
  font-size: 15px;
}

.leadership-card span {
  color: var(--muted);
  font-size: 10px;
}

.leadership-card > a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--blue-600);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  transition: color .2s ease, background .2s ease;
}

.leadership-card > a:hover {
  color: var(--white);
  background: var(--blue-600);
}

.legal-section {
  max-width: var(--content);
  margin-inline: auto;
  padding: 105px 32px;
}

.legal-heading {
  max-width: 750px;
  margin-bottom: 42px;
}

.legal-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 20px;
}

.legal-certificate,
.legal-activities {
  position: relative;
  min-height: 490px;
  padding: 35px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(5, 27, 62, .055);
}

.legal-certificate {
  color: var(--white);
  border-color: rgba(119, 184, 255, .18);
  background:
    radial-gradient(circle at 100% 100%, rgba(10, 201, 139, .13), transparent 30%),
    linear-gradient(145deg, var(--navy-900), var(--navy-800));
}

.certificate-watermark {
  position: absolute;
  left: -15px;
  bottom: -80px;
  color: rgba(255, 255, 255, .025);
  font-size: 190px;
  font-weight: 950;
  line-height: 1;
  direction: ltr;
}

.certificate-header {
  position: relative;
  z-index: 2;
  padding-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.certificate-header img {
  width: 65px;
}

.certificate-header div {
  display: grid;
}

.certificate-header strong {
  font-size: 18px;
}

.certificate-header small {
  color: #9fb3ce;
  font-size: 10px;
}

.legal-certificate dl {
  position: relative;
  z-index: 2;
  margin: 27px 0 0;
  display: grid;
}

.legal-certificate dl > div {
  padding: 15px 0;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 15px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.legal-certificate dl > div:last-child {
  border-bottom: 0;
}

.legal-certificate dt {
  color: #8fa7c4;
  font-size: 11px;
}

.legal-certificate dd {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

.legal-activities h3 {
  margin: 0 0 20px;
  font-size: 22px;
}

.legal-activities ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  list-style: none;
}

.legal-activities li {
  padding: 12px 13px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  font-size: 11px;
}

.legal-activities li::before {
  content: "✓";
  margin-left: 7px;
  color: var(--green-600);
  font-weight: 900;
}

.legal-activities p {
  margin: 22px 0 0;
  padding-top: 17px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 10px;
}

.contact-section {
  position: relative;
  max-width: var(--content);
  min-height: 320px;
  margin: 15px auto 90px;
  padding: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 100%, rgba(10, 201, 139, .23), transparent 30%),
    linear-gradient(115deg, var(--blue-700), #063a8e 62%, var(--navy-800));
  box-shadow: var(--shadow-blue);
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to left, black, transparent 65%);
}

.contact-orbit {
  position: absolute;
  left: -170px;
  bottom: -250px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(103, 237, 189, .2);
  border-radius: 50%;
  box-shadow:
    0 0 0 60px rgba(103, 237, 189, .045),
    0 0 0 130px rgba(103, 237, 189, .02);
}

.contact-copy,
.contact-actions {
  position: relative;
  z-index: 2;
}

.contact-copy {
  max-width: 740px;
}

.contact-copy h2 {
  font-size: clamp(30px, 3.2vw, 47px);
}

.contact-copy p {
  margin: 13px 0 0;
  color: #ccdaed;
  font-size: 14px;
}

.contact-actions {
  min-width: 230px;
  display: grid;
  gap: 10px;
}

.button-light {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .13);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .045);
}

.site-footer {
  padding: 68px max(32px, calc((100vw - var(--content)) / 2)) 24px;
  display: grid;
  grid-template-columns: 1.3fr .62fr .62fr .78fr 142px;
  gap: 36px;
  color: #8fa5c1;
  background: var(--navy-1000);
  border-top: 1px solid rgba(119, 184, 255, .08);
}

.footer-main > p {
  max-width: 420px;
  margin: 17px 0 0;
  color: #7088a6;
  font-size: 11px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
}

.footer-brand img {
  width: 59px;
}

.footer-brand span {
  display: grid;
}

.footer-brand strong {
  font-size: 17px;
}

.footer-brand small {
  color: var(--green-300);
  font-size: 9px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
}

.footer-column > strong {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 13px;
}

.footer-column a {
  transition: color .2s ease;
}

.footer-column a:hover {
  color: var(--green-300);
}

.footer-legal span {
  direction: rtl;
}

.footer-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-trust > strong {
  color: var(--white);
  font-size: 13px;
}

.footer-trust > a {
  width: 124px;
  min-height: 124px;
  padding: 2px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .2);
  transition: transform .2s ease, box-shadow .2s ease;
}

.footer-trust > a:hover,
.footer-trust > a:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 19px 40px rgba(0, 0, 0, .3);
}

.footer-trust img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 22px;
  padding-top: 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #637996;
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .72s ease, transform .72s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.noscript {
  position: fixed;
  z-index: 999;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 13px 18px;
  color: var(--white);
  border-radius: 12px;
  background: #991b1b;
  text-align: center;
}

@keyframes logo-float {
  50% { transform: translateY(-35px) rotateY(2deg); }
}

@keyframes orbit {
  to { transform: rotateX(66deg) rotateZ(349deg); }
}

@keyframes orbit-reverse {
  to { transform: rotateX(66deg) rotateZ(-371deg); }
}

@keyframes ring-flat {
  to { transform: rotate(360deg); }
}

@keyframes scroll-cue {
  0%, 100% { transform: translate(-50%, 0); opacity: .4; }
  50% { transform: translate(-50%, 13px); opacity: 1; }
}

@media (max-width: 1220px) {
  .site-header {
    padding-inline: 24px;
  }

  .brand {
    min-width: 290px;
  }

  .main-menu {
    gap: 17px;
    font-size: 12px;
  }

  .hero {
    padding-inline: 45px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-section,
  .contact-section {
    width: calc(100% - 44px);
  }
}

@media (max-width: 1020px) {
  .menu-toggle {
    display: block;
  }

  .main-menu {
    position: fixed;
    top: 82px;
    right: 18px;
    left: 18px;
    padding: 19px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 19px;
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow-md);
  }

  .main-menu.open {
    display: flex;
  }

  .main-menu > a {
    padding: 9px 12px;
  }

  .nav-cta {
    margin-top: 7px;
    justify-content: center;
    color: var(--white);
  }

  .main-menu > a:not(.nav-cta)::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 145px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 800px;
    margin-inline: auto;
    text-align: center;
  }

  .eyebrow,
  .hero-actions,
  .hero-pillars {
    justify-content: center;
  }

  .hero-visual {
    min-height: 570px;
  }

  .snapshot {
    grid-template-columns: repeat(2, 1fr);
  }

  .snapshot article:nth-child(2) {
    border-left: 0;
  }

  .snapshot article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading > p {
    max-width: 780px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expertise-layout {
    grid-template-columns: 1fr;
  }

  .expertise-core {
    min-height: 560px;
  }

  .process-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 500px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .contact-section {
    align-items: start;
    flex-direction: column;
  }

  .contact-actions {
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr 1fr;
  }

  .site-footer {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-main {
    grid-column: span 3;
  }

  .footer-trust {
    grid-column: span 3;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    min-height: 72px;
    padding: 7px 16px;
  }

  .site-header.scrolled {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand img,
  .scrolled .brand img {
    width: 58px;
    height: 49px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy small {
    font-size: 6px;
  }

  .main-menu {
    top: 72px;
  }

  .hero {
    padding: 116px 20px 80px;
    min-height: 820px;
    align-items: end;
  }

  .hero-artwork {
    background-position: 66% center;
  }

  .hero-background {
    background-image:
      linear-gradient(180deg, rgba(1, 8, 21, .2) 0%, rgba(1, 8, 21, .18) 31%, rgba(1, 8, 21, .88) 58%, rgba(1, 8, 21, .99) 100%),
      linear-gradient(90deg, rgba(1, 8, 21, .15), rgba(1, 8, 21, .02));
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(1, 8, 21, .78), transparent 17%);
    mask-image: none;
  }

  .eyebrow {
    justify-content: flex-start;
    font-size: 11px;
    text-align: right;
  }

  .hero-copy {
    text-align: right;
  }

  .hero h1 {
    font-size: clamp(40px, 13vw, 57px);
  }

  .hero-copy > p {
    font-size: 14px;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-actions .button {
    flex: 1 1 150px;
  }

  .hero-pillars {
    justify-content: flex-start;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    min-height: 420px;
    margin-inline: -20px;
  }

  .logo-stage {
    width: 45%;
  }

  .platform {
    width: 70%;
    height: 125px;
  }

  .float-card {
    width: 120px;
    padding: 9px 11px;
  }

  .float-card span {
    font-size: 9px;
  }

  .card-ai {
    right: 4%;
  }

  .card-cloud {
    left: 2%;
  }

  .card-data {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .snapshot {
    margin-top: -30px;
    padding: 17px 20px;
    grid-template-columns: 1fr;
  }

  .snapshot article,
  .snapshot article:nth-child(2) {
    min-height: 75px;
    padding: 8px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .snapshot article:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 75px 19px;
  }

  .section-heading h2,
  .process-intro h2,
  .about-copy h2,
  .legal-heading h2,
  .contact-copy h2 {
    font-size: 31px;
  }

  .service-grid,
  .portfolio-grid,
  .expertise-groups {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .portfolio-section {
    padding: 78px 19px;
  }

  .portfolio-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
  }

  .portfolio-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .project-card-featured {
    grid-column: auto;
  }

  .expertise-core {
    min-height: 580px;
    padding: 32px 24px;
  }

  .expertise-logo {
    width: 185px;
  }

  .expertise-group {
    min-height: 0;
  }

  .process-section {
    width: calc(100% - 36px);
    margin-bottom: 75px;
    padding: 45px 24px;
  }

  .process-list li {
    grid-template-columns: 34px 1fr;
    gap: 11px;
  }

  .about-section {
    padding: 75px 19px;
  }

  .about-visual {
    min-height: 400px;
  }

  .about-rings {
    max-width: 88%;
  }

  .leadership-card {
    grid-template-columns: 48px 1fr 34px;
    padding: 14px;
  }

  .leadership-initials {
    width: 48px;
    height: 48px;
  }

  .legal-section {
    padding: 75px 19px;
  }

  .legal-certificate,
  .legal-activities {
    min-height: 0;
    padding: 26px 20px;
  }

  .legal-certificate dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .legal-activities ul {
    grid-template-columns: 1fr;
  }

  .contact-section {
    width: calc(100% - 36px);
    margin-bottom: 65px;
    padding: 45px 24px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 52px 20px 22px;
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }

  .footer-main {
    grid-column: span 2;
  }

  .footer-legal {
    grid-column: span 2;
  }

  .footer-trust {
    grid-column: span 2;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
