:root {
  --bg: #f6f6f8;
  --paper: #ffffff;
  --ink: #0c0a11;
  --muted: #6f6a78;
  --line: rgba(12, 10, 17, .11);
  --blue: #1598ff;
  --violet: #7659ff;
  --purple: #b43bff;
  --pink: #ff57dc;
  --gradient: linear-gradient(130deg, var(--blue) 0%, var(--violet) 34%, var(--purple) 64%, var(--pink) 100%);
  --shadow: 0 35px 90px rgba(55, 27, 120, .16);
  --radius: 26px;
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans Arabic", "Manrope", sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.lang-en {
  font-family: "Manrope", "IBM Plex Sans Arabic", sans-serif;
}

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

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

button {
  color: inherit;
}

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

p {
  font-size: 15px;
  line-height: 1.85;
}

::selection {
  background: rgba(180, 59, 255, .23);
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.section {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
  padding-block: 112px;
}

section[id],
[id="top"] {
  scroll-margin-top: 110px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 36px), 1320px);
  height: 74px;
  padding: 10px 12px 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(250, 250, 252, .78);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: 0 15px 45px rgba(24, 16, 42, .08);
  backdrop-filter: blur(22px);
  border-radius: 22px;
  transition: .35s ease;
}

.site-header.scrolled {
  top: 10px;
  background: rgba(255, 255, 255, .9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #08070d;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
}

.brand-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 15px;
  line-height: 1.3;
}

.brand-copy small {
  font-family: "Manrope", sans-serif;
  font-size: 8px;
  letter-spacing: .15em;
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
  color: #4c4852;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  left: auto;
  bottom: -6px;
  height: 1px;
  width: 0;
  background: var(--gradient);
  transition: .25s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
  left: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-switch,
.menu-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.language-switch {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: "Manrope";
  font-size: 11px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .28s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] {
  background: rgba(117, 89, 255, .08);
  border-color: rgba(117, 89, 255, .3);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(3.3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-3.3px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 23px;
  border-radius: 15px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 13px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

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

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  border-radius: 13px;
  font-size: 12px;
}

.button-primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 12px 28px rgba(117, 73, 255, .25);
}

.button-primary:hover {
  box-shadow: 0 18px 36px rgba(117, 73, 255, .33);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, .62);
}

.button-white {
  background: white;
  color: #100d17;
  min-width: 178px;
}

.hero {
  min-height: 100svh;
  padding-top: 160px;
  position: relative;
}

.hero-aurora {
  position: absolute;
  top: 40px;
  inset-inline-start: 50%;
  width: 900px;
  height: 610px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 20% 25%, rgba(27, 151, 255, .19), transparent 28%),
    radial-gradient(circle at 75% 30%, rgba(255, 87, 220, .16), transparent 31%),
    radial-gradient(circle at 48% 65%, rgba(122, 80, 255, .16), transparent 32%);
  filter: blur(30px);
  z-index: -2;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 72px;
}

.hero-copy {
  padding-top: 20px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  border: 1px solid var(--line);
  font-size: 11px;
  color: #5d5865;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 0 5px rgba(117, 89, 255, .08);
}

.hero h1 {
  margin: 26px 0 20px;
  max-width: 760px;
  font-size: clamp(48px, 5vw, 82px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 600;
}

.hero h1 span,
.section-heading h2 span,
.cta-band h2 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy>p {
  max-width: 650px;
  font-size: 18px;
  line-height: 1.9;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  color: var(--muted);
}

.avatars {
  display: flex;
  direction: ltr;
}

.avatars b {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #15121b, #4a2d77);
  border: 2px solid #f6f6f8;
  margin-left: -7px;
  font-family: "Manrope";
  font-size: 11px;
}

.avatars b:nth-child(2) {
  background: linear-gradient(145deg, #2097ff, #755cff);
}

.avatars b:nth-child(3) {
  background: linear-gradient(145deg, #b43bff, #ff57dc);
}

.hero-proof p {
  margin: 0;
  display: grid;
}

.hero-proof strong {
  color: var(--ink);
  font-size: 12px;
}

.hero-proof small {
  font-size: 10px;
  margin-top: 2px;
}

.hero-art {
  min-height: 585px;
  position: relative;
  perspective: 1300px;
  isolation: isolate;
}

.logo-orb {
  position: absolute;
  width: 295px;
  aspect-ratio: 1;
  border-radius: 50%;
  left: 50%;
  top: 49%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 36% 30%, #2a2737 0%, #0a0810 50%, #030205 100%);
  box-shadow: 0 48px 110px rgba(26, 15, 44, .32), inset 0 0 0 1px rgba(255, 255, 255, .08), inset 0 0 70px rgba(125, 75, 255, .1);
  display: grid;
  place-items: center;
  z-index: 4;
}

.logo-orb::before {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(105, 87, 255, .18);
  border-radius: 50%;
}

.logo-orb img {
  width: 230px;
  filter: drop-shadow(0 25px 35px rgba(86, 42, 180, .35));
}

.orbit {
  position: absolute;
  left: 50%;
  top: 49%;
  border: 1px solid rgba(122, 83, 255, .16);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
  z-index: 1;
}

.orbit-one {
  width: 480px;
  height: 325px;
}

.orbit-two {
  width: 570px;
  height: 415px;
  transform: translate(-50%, -50%) rotate(24deg);
  border-style: dashed;
}

.mockup-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  z-index: 6;
}

.mockup-label {
  position: absolute;
  top: 13px;
  left: 14px;
  font: 700 8px/1 "Manrope";
  letter-spacing: .17em;
  color: rgba(255, 255, 255, .78);
}

.mockup-sign {
  width: 215px;
  height: 142px;
  right: 0;
  top: 75px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(20, 18, 28, .96), rgba(67, 37, 111, .88));
  transform: rotate(8deg) translateZ(40px);
  color: #fff;
  padding: 45px 24px 20px;
}

.mockup-sign .mini-logo {
  width: 42px;
  height: 42px;
  position: absolute;
  right: 20px;
  top: 18px;
}

.mockup-sign strong {
  font: 600 31px/1 "Manrope";
  letter-spacing: -.05em;
  display: block;
}

.mockup-sign small {
  font: 400 9px/1.2 "Manrope";
  color: rgba(255, 255, 255, .5);
}

.mockup-print {
  width: 190px;
  height: 215px;
  left: 5px;
  bottom: 55px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .92);
  transform: rotate(-8deg);
  padding: 55px 22px 20px;
}

.mockup-print .mockup-label {
  color: #615c68;
}

.print-lines {
  height: 82px;
  border-radius: 10px;
  background: repeating-linear-gradient(to bottom, #16131b 0 2px, transparent 2px 10px);
  opacity: .72;
}

.swatches {
  display: flex;
  gap: 5px;
  margin-top: 19px;
  direction: ltr;
}

.swatches i {
  height: 24px;
  flex: 1;
  border-radius: 5px;
  background: #1598ff;
}

.swatches i:nth-child(2) {
  background: #7059ff
}

.swatches i:nth-child(3) {
  background: #b43bff
}

.swatches i:nth-child(4) {
  background: #ff57dc
}

.mockup-gift {
  width: 150px;
  height: 150px;
  right: 28px;
  bottom: 70px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .95), rgba(235, 226, 255, .86));
  transform: rotate(7deg);
}

.mockup-gift .mockup-label {
  color: #615c68;
}

.gift-box {
  position: absolute;
  width: 72px;
  height: 58px;
  background: linear-gradient(145deg, #735dff, #d64aff);
  right: 38px;
  bottom: 24px;
  border-radius: 8px;
  box-shadow: 0 16px 26px rgba(139, 77, 255, .22);
}

.gift-box::before {
  content: "";
  position: absolute;
  width: 11px;
  top: 0;
  bottom: 0;
  left: 31px;
  background: rgba(255, 255, 255, .75);
}

.gift-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 19px;
  height: 9px;
  background: rgba(255, 255, 255, .75);
}

.gift-box span::before,
.gift-box span::after {
  content: "";
  position: absolute;
  top: -16px;
  width: 25px;
  height: 22px;
  border: 5px solid rgba(255, 255, 255, .75);
  border-bottom: 0;
}

.gift-box span::before {
  left: 17px;
  border-radius: 18px 0 0 0;
  transform: rotate(12deg);
}

.gift-box span::after {
  right: 17px;
  border-radius: 0 18px 0 0;
  transform: rotate(-12deg)
}

.floating-tag {
  position: absolute;
  z-index: 8;
  padding: 10px 13px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(31, 20, 49, .12);
  font: 700 9px/1 "Manrope";
  letter-spacing: .12em;
}

.tag-cmyk {
  top: 140px;
  left: 28px;
  transform: rotate(-8deg);
}

.tag-cmyk span {
  color: var(--pink)
}

.tag-brand {
  bottom: 31px;
  right: 180px;
  transform: rotate(5deg);
}

.metrics-strip {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #0c0a11;
  border-radius: 24px;
  overflow: hidden;
  color: #fff;
}

.metrics-strip>div {
  min-height: 125px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
  padding: 20px;
  position: relative;
}

.metrics-strip>div+div::after {
  content: "";
  position: absolute;
  inset-block: 25px;
  inset-inline-start: 0;
  width: 1px;
  background: rgba(255, 255, 255, .11);
}

.metrics-strip strong {
  font: 600 37px/1 "Manrope";
}

.metrics-strip>div>span {
  font: 600 20px/1 "Manrope";
  background: var(--gradient);
  -webkit-background-clip: text;
  color: transparent
}

.metrics-strip small {
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, .55);
  margin-top: 10px;
  font-size: 11px
}

.section-heading {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  margin-bottom: 62px;
}

.section-index {
  padding-top: 12px;
  font: 500 10px/1 "Manrope";
  color: #aaa4b0;
}

.eyebrow-text {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 600;
  color: #7b7482;
}

.section-heading h2 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(38px, 4.4vw, 64px);
  letter-spacing: -.04em;
  line-height: 1.08;
  font-weight: 600;
}

.section-heading p {
  color: var(--muted);
  max-width: 600px;
  line-height: 1.8;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 70px;
  align-items: center;
}

.visual-board {
  min-height: 570px;
  padding: 18px;
  border-radius: 32px;
  background: #111016;
  box-shadow: 0 32px 80px rgba(17, 11, 27, .18);
  color: white;
  overflow: hidden;
  position: relative;
}

.visual-board::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  right: -100px;
  top: -130px;
  background: var(--gradient);
  filter: blur(55px);
  opacity: .35;
}

.board-top {
  display: flex;
  justify-content: space-between;
  padding: 4px 7px 17px;
  font: 500 8px/1 "Manrope";
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .45);
}

.board-grid {
  height: 500px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.board-grid>div {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.board-logo {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.board-logo img {
  width: 190px;
  filter: drop-shadow(0 22px 25px rgba(81, 47, 180, .25));
}

.board-logo small {
  font: 500 8px/1 "Manrope";
  letter-spacing: .19em;
  color: rgba(255, 255, 255, .45)
}

.board-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  padding: 22px;
}

.board-type span {
  font: 600 56px/1 "Manrope"
}

.board-type span:first-child {
  font-family: "IBM Plex Sans Arabic"
}

.board-type small {
  grid-column: 1/-1;
  font: 500 8px/1 "Manrope";
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .4)
}

.board-palette {
  position: absolute !important;
  left: 18px !important;
  right: 18px !important;
  bottom: 18px !important;
  height: 55px;
  display: flex;
  gap: 3px;
  padding: 8px;
  z-index: 3
}

.board-palette i {
  flex: 1;
  border-radius: 9px;
  background: #1598ff
}

.board-palette i:nth-child(2) {
  background: #655cff
}

.board-palette i:nth-child(3) {
  background: #9b46ff
}

.board-palette i:nth-child(4) {
  background: #d34df4
}

.board-palette i:nth-child(5) {
  background: #ff71db
}

.board-note {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 18px 88px
}

.board-note b {
  font-size: 18px
}

.board-note small {
  margin-top: 7px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .52)
}

.about-copy .lead {
  font-size: 21px;
  line-height: 1.9;
  color: #26212d;
}

.about-copy>p:not(.lead) {
  color: var(--muted);
  line-height: 1.9
}

.principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}

.principles article {
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .63);
  border-radius: 20px;
}

.principles article>span {
  font: 500 9px/1 "Manrope";
  color: #a49da9
}

.principles h3 {
  margin: 15px 0 8px;
  font-size: 16px
}

.principles p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px
}

.values span {
  padding: 9px 13px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 10px;
  color: #5e5964
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line)
}

.feature-card {
  min-height: 275px;
  padding: 28px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: 0.3s all ease;
}

.feature-card:hover {
  background: #fff;
  box-shadow: 0 20px 50px rgba(26, 18, 37, .07);
  z-index: 2
}

.feature-no {
  font: 500 9px/1 "Manrope";
  color: #a29ca7
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  margin-top: 38px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #15121b, #2f1a49);
  color: #fff;
  box-shadow: 0 12px 24px rgba(45, 27, 71, .16)
}

.feature-card h3 {
  margin: 22px 0 8px;
  font-size: 17px
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 12px
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  min-height: 125px;
  display: grid;
  grid-template-columns: 62px 1fr 90px 42px;
  gap: 25px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: 0.3s all ease;
  padding: 16px 8px;
}

#services .service-row {
  transition: 0.3s all ease;
}

.service-row:hover {
  padding-inline: 22px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(28, 17, 43, .06)
}

.service-num {
  font: 500 10px/1 "Manrope";
  color: #aaa3ae
}

.service-row h3 {
  margin: 0;
  font-size: 22px
}

.service-row p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  max-width: 700px
}

.service-chip {
  justify-self: end;
  font: 700 8px/1 "Manrope";
  letter-spacing: .12em;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px
}

.service-row>i {
  font-style: normal;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #111016;
  color: #fff
}

.process {
  width: 100%;
  max-width: none;
  padding: 70px 24px;
}

.process-shell {
  width: min(100%, 1400px);
  margin: auto;
  background: #0c0a11;
  color: #fff;
  border-radius: 38px;
  padding: 90px max(28px, calc((100% - 1220px)/2));
  position: relative;
  overflow: hidden;
}

.process-shell::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  left: -130px;
  top: -200px;
  background: var(--gradient);
  filter: blur(90px);
  opacity: .2
}

.light-heading .section-index,
.light-heading .eyebrow-text {
  color: rgba(255, 255, 255, .38)
}

.light-heading p {
  color: rgba(255, 255, 255, .48)
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent)
}

.process-card {
  padding: 0 24px;
  min-height: 220px;
  position: relative
}

.process-card>span {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #17141f;
  border: 1px solid rgba(255, 255, 255, .12);
  font: 600 10px/1 "Manrope";
  position: relative;
  z-index: 2
}

.process-card:nth-child(2)>span,
.process-card:nth-child(4)>span {
  background: linear-gradient(135deg, #2594ff, #9f4dff)
}

.process-card h3 {
  margin: 30px 0 9px;
  font-size: 17px
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, .5);
  line-height: 1.8;
  font-size: 12px
}

.filters {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 30px
}

.filters button {
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 10px;
  cursor: pointer;
  transition: 0.3s all ease
}

.filters button:hover {
  border-color: rgba(116, 80, 255, .4);
  color: #4a3a8e
}

.filters button.active {
  background: #0d0b12;
  color: #fff;
  border-color: #0d0b12
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px
}

.project-card {
  grid-column: span 6;
  min-height: 520px;
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(12, 10, 17, .06);
  transition: 0.3s all ease !important;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(24, 15, 38, .1)
}

.project-card.hide {
  display: none
}

.project-visual {
  height: 405px;
  position: relative;
  overflow: hidden
}

.project-meta {
  min-height: 115px;
  padding: 20px 22px;
  position: relative
}

.project-meta span {
  font-size: 9px;
  color: #8a8490
}

.project-meta h3 {
  margin: 7px 0 0;
  font-size: 19px
}

.project-meta small {
  position: absolute;
  top: 25px;
  left: 22px;
  font: 500 8px/1 "Manrope";
  color: #aaa4ad
}

.identity-visual {
  background: linear-gradient(135deg, #eae7ff, #f7e8ff)
}

.identity-sheet {
  position: absolute;
  width: 62%;
  height: 69%;
  background: #111016;
  right: 8%;
  top: 13%;
  border-radius: 16px;
  color: #fff;
  padding: 22px;
  box-shadow: 0 28px 50px rgba(56, 26, 99, .22);
  transform: rotate(5deg)
}

.identity-sheet b {
  font: 600 86px/1 "Manrope";
  background: var(--gradient);
  -webkit-background-clip: text;
  color: transparent
}

.identity-sheet span {
  position: absolute;
  bottom: 18px;
  left: 20px;
  font: 500 8px/1 "Manrope";
  letter-spacing: .13em
}

.identity-sheet i {
  position: absolute;
  width: 120px;
  height: 10px;
  bottom: 49px;
  left: 20px;
  background: var(--gradient);
  border-radius: 10px
}

.identity-card {
  position: absolute;
  width: 38%;
  height: 35%;
  background: #fff;
  left: 7%;
  bottom: 11%;
  border-radius: 14px;
  box-shadow: 0 22px 42px rgba(42, 26, 67, .14);
  display: grid;
  place-items: center;
  transform: rotate(-8deg)
}

.identity-card img {
  width: 86px
}

.print-visual {
  background: linear-gradient(135deg, #dff1ff, #ebe6ff)
}

.paper-stack {
  position: absolute;
  width: 58%;
  height: 63%;
  left: 21%;
  top: 18%;
  perspective: 800px
}

.paper-stack i {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 18px 35px rgba(35, 44, 85, .13);
  transform: rotate(-4deg)
}

.paper-stack i:nth-child(2) {
  transform: translate(14px, -12px) rotate(2deg);
  background: #f7f5fa
}

.paper-stack i:nth-child(3) {
  transform: translate(28px, -23px) rotate(7deg);
  background: linear-gradient(135deg, #1798ff, #8b5cff, #ff64de)
}

.paper-stack strong {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  right: 8px;
  font: 700 54px/1 "Manrope";
  color: #15121b;
  mix-blend-mode: multiply
}

.sign-visual {
  background: linear-gradient(155deg, #17151e, #2e1f42)
}

.sign-wall {
  position: absolute;
  inset: 12%;
  border-radius: 18px;
  background: #0d0b12;
  border: 1px solid rgba(255, 255, 255, .07);
  box-shadow: inset 0 0 90px rgba(123, 74, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column
}

.sign-wall span {
  font: 700 70px/1 "Manrope";
  letter-spacing: .05em;
  color: #fff;
  text-shadow: 0 0 24px rgba(170, 93, 255, .32)
}

.sign-wall b {
  margin-top: 15px;
  font: 500 8px/1 "Manrope";
  letter-spacing: .22em;
  background: var(--gradient);
  -webkit-background-clip: text;
  color: transparent
}

.gift-visual {
  background: linear-gradient(135deg, #f3e9ff, #fceef7)
}

.gift-box-large {
  position: absolute;
  width: 230px;
  height: 190px;
  right: 22%;
  top: 26%;
  border-radius: 18px;
  background: linear-gradient(145deg, #7a5cff, #d84eea);
  box-shadow: 0 35px 50px rgba(139, 75, 255, .25);
  display: grid;
  place-items: center
}

.gift-box-large::before {
  content: "";
  position: absolute;
  width: 20px;
  top: 0;
  bottom: 0;
  background: #fff9;
}

.gift-box-large::after {
  content: "";
  position: absolute;
  height: 18px;
  left: 0;
  right: 0;
  background: #fff9;
}

.gift-box-large img {
  width: 100px;
  position: relative;
  z-index: 2;
  filter: brightness(0) invert(1);
  opacity: .7
}

.gift-cup {
  position: absolute;
  left: 16%;
  bottom: 19%;
  width: 95px;
  height: 130px;
  background: #15131b;
  color: #fff;
  border-radius: 10px 10px 24px 24px;
  display: grid;
  place-items: center;
  font: 700 45px/1 "Manrope";
  z-index: 3;
  box-shadow: 0 24px 40px rgba(26, 17, 40, .18)
}

.ads-visual {
  background: linear-gradient(145deg, #ffe8f9, #e8f2ff)
}

.billboard {
  position: absolute;
  inset: 14% 9%;
  background: #121017;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(28, 17, 43, .2);
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.billboard::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 11px
}

.billboard span,
.billboard strong {
  font: 600 58px/.92 "Manrope";
  position: relative;
  z-index: 2
}

.billboard span {
  color: #fff
}

.billboard strong {
  background: var(--gradient);
  -webkit-background-clip: text;
  color: transparent
}

.car-visual {
  background: linear-gradient(160deg, #dff1ff, #f1e4ff)
}

.car-body {
  position: absolute;
  width: 68%;
  height: 34%;
  left: 16%;
  top: 38%;
  background: linear-gradient(110deg, #15121a 0 46%, #7a55ff 46% 70%, #ed55db 70%);
  border-radius: 80px 90px 35px 35px;
  transform: skewX(-7deg);
  box-shadow: 0 25px 45px rgba(39, 27, 60, .23)
}

.car-body::before {
  content: "";
  position: absolute;
  width: 43%;
  height: 60%;
  right: 17%;
  top: -43%;
  background: #1b1822;
  clip-path: polygon(19% 100%, 41% 0, 80% 0, 100% 100%);
  border-radius: 30px
}

.car-body b {
  position: absolute;
  left: 28%;
  top: 44%;
  font: 700 23px/1 "Manrope";
  color: #fff;
  letter-spacing: .08em
}

.wheel {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #111016;
  border: 13px solid #2d2934;
  top: 61%;
  box-shadow: 0 8px 15px #4639574f
}

.w1 {
  left: 27%
}

.w2 {
  right: 24%
}

.sector-marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 26px 0
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 23px;
  animation: marquee 38s linear infinite
}

.marquee-track span {
  font-size: 26px;
  font-weight: 500
}

.marquee-track i {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  color: transparent
}

.lang-en .marquee-track {
  animation-direction: reverse
}

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

.cta-band {
  width: min(calc(100% - 48px), var(--max));
  min-height: 350px;
  padding: 55px 60px;
  background: linear-gradient(120deg, #15111c 0%, #1b1430 45%, #27143d 100%);
  border-radius: 34px;
  color: #fff;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  right: -170px;
  top: -240px;
  background: var(--gradient);
  filter: blur(80px);
  opacity: .25
}

.cta-orb {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #09070c;
  border: 1px solid rgba(255, 255, 255, .08);
  display: grid;
  place-items: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, .28);
  position: relative;
  z-index: 2
}

.cta-orb img {
  width: 105px
}

.cta-band>div:not(.cta-orb) {
  position: relative;
  z-index: 2
}

.cta-band h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  margin: 7px 0 12px;
  max-width: 760px
}

.cta-band p {
  color: rgba(255, 255, 255, .54);
  margin: 0
}

.cta-band .button {
  position: relative;
  z-index: 2
}

.contact-layout {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  align-items: start;
  gap: 18px
}

.contact-panel {
  min-height: 660px;
  background: #0d0b12;
  border-radius: 28px;
  padding: 32px;
  color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden
}

.contact-panel::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  right: -150px;
  top: -130px;
  background: var(--gradient);
  filter: blur(85px);
  opacity: .21
}

.contact-symbol {
  height: 270px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .07);
  display: grid;
  place-items: center;
  position: relative
}

.contact-symbol img {
  width: 210px;
  filter: drop-shadow(0 25px 32px rgba(102, 57, 213, .24))
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 20px;
  margin: 35px 4px
}

.contact-info div {
  display: grid;
  gap: 5px
}

.contact-info small {
  font-size: 9px;
  color: rgba(255, 255, 255, .37)
}

.contact-info strong,
.contact-info a {
  font-size: 13px;
  font-weight: 500
}

.whatsapp-link {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 22px;
  font-size: 12px
}

.whatsapp-link i {
  font-style: normal
}

.quote-form {
  background: #fff;
  border: 1px solid rgba(12, 10, 17, .06);
  border-radius: 28px;
  padding: 44px;
  box-shadow: 0 40px 90px -40px rgba(40, 22, 80, .18), inset 0 1px 0 rgba(255, 255, 255, .9);
  position: relative
}

.form-title {
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line)
}

.form-title span {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text
}

.form-title h3 {
  font-size: 30px;
  letter-spacing: -.02em;
  margin: 8px 0 0
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px
}

.form-grid label {
  display: grid;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  color: #2b2730
}

.form-grid label.full {
  grid-column: 1/-1
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #faf9fb;
  border-radius: 14px;
  outline: none;
  padding: 16px 18px;
  color: var(--ink);
  font-size: 14px;
  transition: 0.3s all ease
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #a7a1ad
}

.form-grid input,
.form-grid select {
  height: 54px
}

.form-grid textarea {
  resize: vertical;
  min-height: 130px
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: rgba(116, 80, 255, .55);
  box-shadow: 0 0 0 4px rgba(116, 80, 255, .1);
  background: #fff
}

.file-field {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  background: #faf9fb;
  transition: 0.3s all ease
}

.file-field:hover {
  border-color: rgba(116, 80, 255, .5);
  background: #fff
}

.file-field input {
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  height: auto !important;
  box-shadow: none !important;
  color: #6b6570;
  font-size: 13px
}

.file-field input::file-selector-button,
.file-field input::-webkit-file-upload-button {
  border: 0;
  border-radius: 10px;
  padding: 9px 16px;
  margin-inline-end: 12px;
  font: 600 12px "Manrope", "IBM Plex Sans Arabic";
  color: #fff;
  background: var(--gradient);
  cursor: pointer;
  transition: 0.3s all ease
}

.file-field input::file-selector-button:hover,
.file-field input::-webkit-file-upload-button:hover {
  filter: brightness(1.06);
  box-shadow: 0 8px 20px rgba(117, 73, 255, .25)
}

.file-field small {
  color: #aaa3af;
  font-size: 11px
}

.check-field {
  display: flex !important;
  align-items: flex-start;
  gap: 13px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #faf9fb;
  cursor: pointer;
  transition: 0.3s all ease
}

.check-field:hover {
  border-color: rgba(116, 80, 255, .35);
  background: #fff
}

.check-field:focus-within {
  border-color: rgba(116, 80, 255, .55);
  box-shadow: 0 0 0 4px rgba(116, 80, 255, .1);
  background: #fff
}

.check-field input {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 22px;
  width: 22px !important;
  height: 22px !important;
  margin-top: 1px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  cursor: pointer;
  transition: 0.3s all ease;
  position: relative
}

.check-field input:checked {
  background: var(--gradient);
  border-color: transparent
}

.check-field input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  transform: translate(-50%, -55%) rotate(45deg);
  transform-origin: center
}

.check-field span {
  font-size: 12px;
  font-weight: 500;
  color: #5f5964;
  line-height: 1.7
}

.form-submit {
  margin-top: 28px;
  width: 100%;
  min-height: 56px;
  border: 0;
  font-size: 14px
}

.form-note {
  font-size: 12px;
  color: #6b6570;
  margin: 14px 0 0;
  text-align: center;
  min-height: 18px
}

.site-footer {
  width: min(calc(100% - 48px), var(--max));
  margin: 25px auto 30px;
  border-top: 1px solid var(--line);
  padding-top: 35px
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 35px
}

.footer-main p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
  margin: 0
}

.footer-email {
  justify-self: end;
  font: 500 16px/1 "Manrope"
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  color: #9a949e;
  font-size: 9px;
  font-family: "Manrope", "IBM Plex Sans Arabic"
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity .7s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
}

html[dir="ltr"] .desktop-nav a::after {
  left: 0;
  right: auto;
}

html[dir="ltr"] .project-meta small {
  right: 22px;
  left: auto;
}

html[dir="ltr"] .mockup-label {
  right: 14px;
  left: auto;
}

html[dir="ltr"] .mockup-sign .mini-logo {
  left: 20px;
  right: auto;
}

html[dir="ltr"] .board-palette {
  left: 18px !important;
  right: 18px !important;
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-actions .button-small {
    display: none;
  }

  .mobile-menu {
    position: fixed;
    z-index: 90;
    top: 100px;
    left: 18px;
    right: 18px;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 22px;
    box-shadow: 0 24px 55px rgba(22, 14, 35, .12);
    padding: 12px;
    flex-direction: column;
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu a {
    padding: 14px 15px;
    border-bottom: 1px solid var(--line);
    font-size: 13px
  }

  .mobile-menu a:last-child {
    border-bottom: 0
  }

  .hero-grid,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 140px;
    overflow: hidden;
  }

  .hero-art {
    min-height: 520px;
    overflow: hidden;
  }

  .hero-copy {
    max-width: 780px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 0
  }

  .process-grid::before {
    display: none
  }

  .portfolio-grid .project-card {
    grid-column: span 6
  }

  .cta-band {
    grid-template-columns: 120px 1fr
  }

  .cta-band .button {
    grid-column: 2
  }

  .footer-main {
    grid-template-columns: 1fr 1fr
  }

  .footer-main p {
    display: none
  }
}

@media (max-width: 720px) {
  .section {
    width: min(calc(100% - 28px), var(--max));
    padding-block: 78px;
  }

  .site-header {
    width: calc(100% - 22px);
    height: 66px;
    top: 10px;
    padding: 8px 9px
  }

  .mobile-menu {
    top: 84px;
    left: 12px;
    right: 12px;
  }

  .brand-mark {
    width: 42px;
    height: 42px
  }

  .brand-mark img {
    width: 37px
  }

  .brand-copy strong {
    font-size: 13px
  }

  .brand-copy small {
    font-size: 7px
  }

  .language-switch,
  .menu-toggle {
    width: 40px;
    height: 40px
  }

  .hero {
    padding-top: 120px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(43px, 12vw, 64px);
  }

  .hero-copy>p {
    font-size: 15px
  }

  .hero-actions {
    flex-wrap: wrap
  }

  .hero-actions .button {
    flex: 1;
    min-width: 145px
  }

  .hero-art {
    min-height: 380px;
    transform: scale(.86);
    transform-origin: center top;
  }

  .logo-orb {
    width: 235px
  }

  .logo-orb img {
    width: 185px
  }

  .orbit-one {
    width: 380px;
    height: 270px
  }

  .orbit-two {
    width: 450px;
    height: 330px
  }

  .mockup-sign {
    width: 175px;
    height: 120px;
    right: 3%;
    top: 44px
  }

  .mockup-sign strong {
    font-size: 24px
  }

  .mockup-print {
    width: 155px;
    height: 180px;
    left: 1%;
    bottom: 42px
  }

  .mockup-gift {
    width: 130px;
    height: 130px;
    right: 7%;
    bottom: 45px
  }

  .tag-brand {
    right: 145px
  }

  .metrics-strip {
    grid-template-columns: 1fr 1fr;
    margin-top: 20px
  }

  .metrics-strip>div+div::after {
    display: none
  }

  .metrics-strip>div {
    min-height: 105px
  }

  .metrics-strip strong {
    font-size: 30px
  }

  .section-heading {
    grid-template-columns: 45px 1fr;
    gap: 10px;
    margin-bottom: 38px
  }

  .section-heading h2 {
    font-size: 38px
  }

  .about-layout {
    gap: 32px
  }

  .visual-board {
    min-height: 430px
  }

  .board-grid {
    height: 360px
  }

  .board-logo img {
    width: 125px
  }

  .board-type span {
    font-size: 38px
  }

  .board-note {
    padding: 14px 12px 72px
  }

  .board-note b {
    font-size: 14px
  }

  .about-copy .lead {
    font-size: 18px
  }

  .principles {
    grid-template-columns: 1fr
  }

  .feature-grid {
    grid-template-columns: 1fr
  }

  .feature-card {
    min-height: 220px
  }

  .feature-icon {
    margin-top: 24px
  }

  .service-row {
    grid-template-columns: 42px 1fr 34px;
    gap: 12px
  }

  .service-chip {
    display: none
  }

  .service-row h3 {
    font-size: 18px
  }

  .service-row p {
    font-size: 11px
  }

  .process {
    padding: 35px 14px
  }

  .process-shell {
    border-radius: 28px;
    padding: 65px 18px
  }

  .process-grid {
    grid-template-columns: 1fr
  }

  .process-card {
    min-height: 170px
  }

  .portfolio-grid {
    grid-template-columns: 1fr
  }

  .portfolio-grid .project-card {
    grid-column: 1;
    min-height: 430px
  }

  .project-visual {
    height: 325px
  }

  .billboard span,
  .billboard strong {
    font-size: 44px
  }

  .sign-wall span {
    font-size: 52px
  }

  .gift-box-large {
    right: 19%;
    width: 190px;
    height: 160px
  }

  .car-body {
    width: 76%;
    left: 12%
  }

  .marquee-track span {
    font-size: 20px
  }

  .cta-band {
    width: calc(100% - 28px);
    padding: 36px 24px;
    grid-template-columns: 1fr;
    gap: 20px
  }

  .cta-orb {
    width: 90px;
    height: 90px
  }

  .cta-orb img {
    width: 73px
  }

  .cta-band .button {
    grid-column: auto;
    justify-self: start
  }

  .contact-panel {
    min-height: 590px
  }

  .contact-info {
    grid-template-columns: 1fr
  }

  .quote-form {
    padding: 25px 18px
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .form-grid label.full {
    grid-column: auto
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .footer-email {
    justify-self: start
  }

  .footer-bottom {
    gap: 16px;
    flex-direction: column
  }
}

@media (max-width: 420px) {
  .section {
    width: calc(100% - 20px);
    padding-block: 64px;
  }

  .site-header {
    height: 60px;
    gap: 10px;
    padding: 6px 8px;
  }

  .brand {
    gap: 8px;
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-mark img {
    width: 33px;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .brand-copy small {
    display: none;
  }

  .language-switch,
  .menu-toggle {
    width: 36px;
    height: 36px;
  }

  .header-actions {
    gap: 6px;
  }

  .mobile-menu {
    top: 84px;
    left: 11px;
    right: 11px;
  }

  .hero {
    padding-top: 100px;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 44px);
    line-height: 1.12;
    letter-spacing: -.02em;
  }

  .hero-copy>p {
    font-size: 15px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
    min-width: 0;
  }

  .hero-art {
    min-height: 320px;
    transform: scale(.78);
    transform-origin: center top;
  }

  .logo-orb {
    width: 200px;
  }

  .logo-orb img {
    width: 160px;
  }

  .orbit-one {
    width: 330px;
    height: 235px;
  }

  .orbit-two {
    width: 390px;
    height: 285px;
  }

  .mockup-sign {
    width: 150px;
    height: 108px;
    right: 2%;
    top: 30px;
  }

  .mockup-sign strong {
    font-size: 21px;
  }

  .mockup-print {
    width: 132px;
    height: 155px;
    bottom: 28px;
  }

  .mockup-gift {
    width: 110px;
    height: 110px;
    right: 5%;
    bottom: 24px;
  }

  .tag-cmyk {
    top: 92px;
    left: 6px;
  }

  .tag-brand {
    right: 118px;
    bottom: 20px;
  }

  .metrics-strip {
    margin-top: 14px;
  }

  .metrics-strip>div {
    min-height: 92px;
    padding: 14px;
  }

  .metrics-strip strong {
    font-size: 26px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-bottom: 32px;
  }

  .section-index {
    display: none;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .section-heading p {
    font-size: 13px;
  }

  .visual-board {
    min-height: 360px;
  }

  .board-grid {
    height: 300px;
  }

  .board-type span {
    font-size: 32px;
  }

  .service-row {
    grid-template-columns: 30px 1fr 30px;
    gap: 10px;
    padding: 14px 4px;
  }

  .service-row>i {
    width: 32px;
    height: 32px;
  }

  .process {
    padding: 28px 10px;
  }

  .process-shell {
    border-radius: 24px;
    padding: 48px 16px;
  }

  .process-card {
    min-height: 150px;
  }

  .portfolio-grid .project-card {
    min-height: 380px;
  }

  .project-visual {
    height: 280px;
  }

  .billboard {
    padding: 28px 22px;
  }

  .billboard span,
  .billboard strong {
    font-size: 34px;
  }

  .sign-wall span {
    font-size: 40px;
  }

  .gift-box-large {
    right: 16%;
    width: 160px;
    height: 135px;
  }

  .cta-band {
    padding: 30px 20px;
  }

  .cta-band h2 {
    font-size: 28px;
  }

  .cta-orb {
    width: 78px;
    height: 78px;
  }

  .cta-orb img {
    width: 62px;
  }

  .contact-panel {
    min-height: 0;
    padding: 24px 20px;
  }

  .contact-symbol {
    height: 220px;
  }

  .contact-symbol img {
    width: 170px;
  }

  .form-title h3 {
    font-size: 24px;
  }

  .quote-form {
    padding: 22px 16px;
  }

  .form-grid input,
  .form-grid select {
    height: 52px;
  }
}

@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;
  }
}