:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --surface-2: #171717;
  --text: #f7f4ed;
  --muted: #a7a39a;
  --gold: #d6ad55;
  --gold-light: #f0d18f;
  --line: rgba(255, 255, 255, 0.1);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Kufi Arabic", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 28px;
  font-weight: 800;
  animation: loaderPulse 1s ease-in-out infinite alternate;
}

@keyframes loaderPulse {
  to {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 0 40px rgba(214, 173, 85, 0.25);
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 86px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, height 0.3s ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(10, 10, 10, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #0a0a0a;
  font-weight: 900;
  font-size: 20px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-text strong {
  font-size: 14px;
}

.brand-text small {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 1.5px;
  direction: ltr;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-inline-start: auto;
}

.main-nav a {
  position: relative;
  color: #d7d3ca;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-light);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-cta:hover {
  color: #0a0a0a;
  background: var(--gold);
}

.menu-toggle {
  display: none;
  margin-inline-start: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: 0.25s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 130px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.14;
}

.hero-glow-one {
  width: 500px;
  height: 500px;
  background: var(--gold);
  top: -180px;
  left: -180px;
}

.hero-glow-two {
  width: 400px;
  height: 400px;
  background: #5f4315;
  bottom: 0;
  right: -180px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 190px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  padding-bottom: 70px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
}

.eyebrow span {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(45px, 6vw, 84px);
  line-height: 1.22;
  letter-spacing: -2px;
  font-weight: 800;
}

.hero h1 span {
  display: block;
  color: var(--gold);
}

.hero-copy > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  margin-top: 25px;
}

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

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 12px 24px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #111;
  background: var(--gold);
  box-shadow: 0 12px 35px rgba(214, 173, 85, 0.17);
}

.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 16px 45px rgba(214, 173, 85, 0.25);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255,255,255,0.02);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-light {
  background: var(--text);
  color: #0a0a0a;
  white-space: nowrap;
}

.arrow {
  font-size: 18px;
}

.hero-stats {
  display: flex;
  gap: 42px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero-stats > div {
  min-width: 105px;
}

.hero-stats strong,
.hero-stats > div > span {
  font-size: 26px;
  color: var(--text);
}

.hero-stats > div > span {
  color: var(--gold);
}

.hero-stats small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  margin-top: -2px;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}

.visual-card {
  border: 1px solid rgba(214, 173, 85, 0.25);
  background: linear-gradient(145deg, #171717, #0d0d0d);
  box-shadow: var(--shadow);
}

.main-card {
  position: relative;
  width: min(100%, 455px);
  padding: 16px;
  transform: rotate(-3deg);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 4px 14px;
  direction: ltr;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 2px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(214, 173, 85, 0.75);
}

.poster-preview {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  direction: ltr;
  background:
    radial-gradient(circle at 80% 20%, rgba(214,173,85,.22), transparent 25%),
    linear-gradient(160deg, #171717 0%, #080808 60%, #241b0b 100%);
  border: 1px solid rgba(255,255,255,.06);
}

.poster-preview::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(214, 173, 85, 0.25);
  border-radius: 50%;
  left: -165px;
  bottom: -80px;
}

.poster-line {
  width: 38px;
  height: 3px;
  margin-bottom: 24px;
  background: var(--gold);
}

.poster-preview h2 {
  position: relative;
  z-index: 2;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -4px;
}

.poster-preview p {
  position: relative;
  z-index: 2;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 4px;
  margin-top: 13px;
}

.poster-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  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 70%);
}

.poster-badge {
  position: absolute;
  right: 28px;
  bottom: 28px;
  padding: 8px 12px;
  color: var(--gold-light);
  border: 1px solid rgba(214,173,85,.35);
  font-size: 8px;
  letter-spacing: 1px;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 200px;
  padding: 15px 16px;
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0,0,0,.4);
  backdrop-filter: blur(12px);
}

.floating-one {
  top: 90px;
  right: -18px;
}

.floating-two {
  bottom: 95px;
  left: -10px;
}

.floating-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(214, 173, 85, 0.12);
  color: var(--gold);
  border: 1px solid rgba(214, 173, 85, 0.25);
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  font-size: 12px;
}

.floating-card small {
  color: var(--muted);
  font-size: 9px;
}

.brand-strip {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #0d0d0d;
}

.strip-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 17px 0;
  direction: ltr;
  animation: marquee 30s linear infinite;
}

.strip-track span {
  color: #d8d3c8;
  font-size: 10px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.strip-track i {
  color: var(--gold);
  font-style: normal;
}

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

.section {
  position: relative;
  padding: 115px 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 52px;
}

.section-heading > p {
  max-width: 480px;
  color: var(--muted);
  font-size: 13px;
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.section-heading.centered p {
  max-width: 580px;
}

.section-kicker {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .3px;
  margin-bottom: 12px;
}

.section-heading h2,
.about-copy h2,
.contact-info h2,
.cta-card h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.45;
  letter-spacing: -1px;
}

.services {
  background: #0d0d0d;
}

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

.service-card {
  position: relative;
  min-height: 310px;
  padding: 33px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.01);
  overflow: hidden;
  transition: background .3s ease, transform .3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}

.service-card:hover {
  background: #151515;
  transform: translateY(-5px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-number {
  position: absolute;
  top: 24px;
  left: 26px;
  color: rgba(255,255,255,.16);
  font-size: 11px;
  direction: ltr;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(214,173,85,.25);
  color: var(--gold);
  font-size: 23px;
}

.service-card h3 {
  font-size: 17px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  font-size: 12px;
}

.service-card a {
  position: absolute;
  right: 33px;
  bottom: 28px;
  display: inline-flex;
  gap: 10px;
  color: var(--gold-light);
  font-size: 11px;
}

.portfolio {
  background: var(--bg);
}

.filter-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 15px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  font-size: 10px;
  cursor: pointer;
  transition: .2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  color: #0a0a0a;
  background: var(--gold);
  border-color: var(--gold);
}

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

.portfolio-item {
  min-width: 0;
  transition: opacity .3s ease, transform .3s ease;
}

.portfolio-item.wide {
  grid-column: span 2;
}

.portfolio-item.hidden {
  display: none;
}

.work-visual {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #141414;
}

.portfolio-item.wide .work-visual {
  min-height: 400px;
}

.work-visual::after {
  content: "↗";
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(214,173,85,.4);
  background: rgba(10,10,10,.65);
  opacity: 0;
  transform: translateY(8px);
  transition: .3s ease;
}

.portfolio-item:hover .work-visual::after {
  opacity: 1;
  transform: translateY(0);
}

.work-meta {
  padding-top: 16px;
}

.work-meta span {
  color: var(--gold);
  font-size: 9px;
}

.work-meta h3 {
  font-size: 14px;
  margin-top: 2px;
}

.visual-sign {
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.6)),
    repeating-linear-gradient(90deg, #5a5348 0 48px, #625a4e 48px 50px);
}

.shop-sign {
  padding: 22px 44px;
  color: var(--gold-light);
  border: 2px solid var(--gold);
  font-size: clamp(36px, 6vw, 70px);
  font-weight: 800;
  letter-spacing: 8px;
  box-shadow: 0 0 30px rgba(214,173,85,.16), inset 0 0 25px rgba(214,173,85,.08);
  direction: ltr;
}

.visual-cardset {
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, #2f2617, #111 65%);
}

.card-stack {
  position: absolute;
  width: 210px;
  height: 125px;
  border: 1px solid rgba(214,173,85,.4);
  background:
    linear-gradient(135deg, rgba(214,173,85,.18), transparent 60%),
    #111;
  box-shadow: 0 25px 50px rgba(0,0,0,.5);
}

.card-a {
  transform: rotate(11deg) translate(20px,-12px);
}

.card-b {
  transform: rotate(-8deg) translate(-18px,15px);
}

.card-b::before {
  content: "NEXSHIN";
  position: absolute;
  left: 20px;
  top: 24px;
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 14px;
  direction: ltr;
}

.card-b::after {
  content: "PREMIUM PRINTING";
  position: absolute;
  left: 20px;
  top: 52px;
  color: #aaa;
  letter-spacing: 1px;
  font-size: 6px;
  direction: ltr;
}

.visual-box {
  display: grid;
  place-items: center;
  perspective: 900px;
  background: linear-gradient(145deg, #121212, #211a0d);
}

.box-face {
  width: 145px;
  height: 145px;
  display: grid;
  place-items: center;
  color: #111;
  background: var(--gold);
  font-size: 54px;
  font-weight: 900;
  transform: rotateX(60deg) rotateZ(-45deg);
  box-shadow: -35px 35px 0 #8c6c2b, -45px 45px 50px rgba(0,0,0,.45);
}

.visual-shirt {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(214,173,85,.15), transparent 35%),
    #111;
}

.shirt-shape {
  position: relative;
  width: 150px;
  height: 190px;
  display: grid;
  place-items: center;
  background: #e8e3d7;
  clip-path: polygon(22% 0, 39% 9%, 61% 9%, 78% 0, 100% 18%, 82% 36%, 78% 25%, 78% 100%, 22% 100%, 22% 25%, 18% 36%, 0 18%);
  filter: drop-shadow(0 25px 20px rgba(0,0,0,.45));
}

.shirt-shape span {
  color: #171717;
  font-size: 44px;
  font-weight: 900;
  transform: translateY(10px);
}

.visual-banner {
  display: flex;
  align-items: center;
  padding: 55px;
  background:
    linear-gradient(100deg, rgba(0,0,0,.85) 20%, rgba(0,0,0,.15)),
    repeating-linear-gradient(-45deg, #bd8f32 0 35px, #d9b65d 35px 70px);
}

.banner-copy {
  direction: ltr;
}

.banner-copy small {
  display: block;
  letter-spacing: 5px;
  font-size: 10px;
  color: var(--gold-light);
}

.banner-copy strong {
  display: block;
  font-size: clamp(55px, 9vw, 110px);
  line-height: 1;
  letter-spacing: -6px;
}

.process {
  background: #0d0d0d;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr 80px 1fr;
  align-items: start;
}

.process-step {
  text-align: center;
}

.process-step > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--gold);
  border: 1px solid rgba(214,173,85,.35);
  border-radius: 50%;
  direction: ltr;
  font-size: 11px;
}

.process-step h3 {
  font-size: 14px;
  margin-bottom: 9px;
}

.process-step p {
  color: var(--muted);
  font-size: 10px;
}

.process-line {
  height: 1px;
  margin-top: 29px;
  background: linear-gradient(to left, var(--gold), rgba(214,173,85,.1));
}

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

.about-panel {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(214,173,85,.14), transparent 35%),
    linear-gradient(145deg, #171717, #0d0d0d);
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(255,255,255,.04);
}

.machine-shape {
  position: relative;
  width: 280px;
  height: 250px;
  border: 1px solid #393939;
  background: linear-gradient(145deg,#242424,#121212);
  box-shadow: 0 35px 60px rgba(0,0,0,.45);
}

.machine-top {
  position: absolute;
  top: -60px;
  right: 30px;
  width: 220px;
  height: 70px;
  border: 1px solid #333;
  background: #161616;
  transform: skewX(-15deg);
}

.machine-screen {
  position: absolute;
  top: 55px;
  left: 30px;
  width: 80px;
  height: 45px;
  display: grid;
  place-items: center;
  color: #111;
  background: var(--gold);
  font-size: 8px;
  letter-spacing: 1px;
  direction: ltr;
}

.machine-output {
  position: absolute;
  right: 40px;
  left: 40px;
  bottom: 20px;
  height: 80px;
  background: #090909;
  border: 1px solid #333;
}

.machine-output::after {
  content: "NEXSHIN";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: -55px;
  padding: 10px 0;
  color: #151515;
  background: var(--gold-light);
  text-align: center;
  font-size: 12px;
  letter-spacing: 3px;
  direction: ltr;
  box-shadow: 0 18px 35px rgba(0,0,0,.35);
}

.experience-badge {
  position: absolute;
  left: 25px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  color: #0a0a0a;
  background: var(--gold);
}

.experience-badge strong {
  font-size: 34px;
  line-height: 1;
  direction: ltr;
}

.experience-badge span {
  font-size: 9px;
  font-weight: 700;
  line-height: 1.5;
}

.about-copy > p,
.contact-info > p {
  color: var(--muted);
  font-size: 13px;
  margin: 22px 0 28px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 20px;
  margin: 30px 0;
}

.about-features div {
  font-size: 12px;
}

.about-features span {
  width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  margin-left: 8px;
  color: var(--gold);
  border: 1px solid rgba(214,173,85,.3);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(214,173,85,.35);
}

.cta-section {
  padding: 0 0 115px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 60px;
  color: #0a0a0a;
  background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,.28), transparent 28%),
    var(--gold);
}

.cta-card .section-kicker {
  color: #0a0a0a;
  opacity: .7;
}

.cta-card p {
  font-size: 12px;
  margin-top: 10px;
  opacity: .7;
}

.contact {
  background: #0d0d0d;
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 15px;
  margin-top: 35px;
}

.contact-list > a,
.contact-list > div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(214,173,85,.3);
}

.contact-list small,
.contact-list strong {
  display: block;
}

.contact-list small {
  color: var(--muted);
  font-size: 9px;
}

.contact-list strong {
  direction: ltr;
  font-size: 12px;
  margin-top: 2px;
}

.social-links {
  display: flex;
  gap: 9px;
  margin-top: 28px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: .2s ease;
}

.social-links a:hover {
  color: #0a0a0a;
  border-color: var(--gold);
  background: var(--gold);
}

.contact-form {
  padding: 34px;
  border: 1px solid var(--line);
  background: #111;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: block;
  color: #d7d3ca;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  color: var(--text);
  background: #0c0c0c;
  border: 1px solid var(--line);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

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

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(15px) calc(50% - 3px), calc(10px) calc(50% - 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214,173,85,.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #67645e;
}

.submit-btn {
  width: 100%;
  border: 0;
}

.form-note {
  display: block;
  color: #77736b;
  font-size: 8px;
  margin-top: 10px;
  text-align: center;
}

.site-footer {
  padding: 55px 0 25px;
  background: #080808;
}

.footer-main {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-bottom: 35px;
}

.footer-main > p {
  color: var(--muted);
  font-size: 11px;
  margin-inline-start: auto;
}

.back-to-top {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(214,173,85,.3);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 22px;
  color: #77736b;
  border-top: 1px solid var(--line);
  font-size: 8px;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  left: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #0a0a0a;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 12px 35px rgba(214,173,85,.3);
  animation: floatPulse 2.2s ease-in-out infinite;
}

.whatsapp-float span {
  font-size: 24px;
}

@keyframes floatPulse {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

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

@media (max-width: 1050px) {
  .main-nav {
    gap: 16px;
  }

  .hero-grid {
    gap: 35px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .floating-one {
    right: 0;
  }

  .floating-two {
    left: 0;
  }

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

  .process-grid {
    grid-template-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  }

  .about-grid,
  .contact-grid {
    gap: 45px;
  }
}

@media (max-width: 860px) {
  .site-header,
  .site-header.scrolled {
    height: 72px;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    z-index: 1002;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    background: rgba(8,8,8,.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: .3s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    font-size: 20px;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 60px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 520px;
    margin-top: 15px;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }

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

  .portfolio-item.wide {
    grid-column: span 2;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }

  .process-line {
    display: none;
  }

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

  .about-visual {
    order: 2;
  }

  .cta-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 45px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

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

  .hero {
    padding-top: 92px;
  }

  .hero-grid {
    padding-top: 35px;
  }

  .hero h1 {
    font-size: 42px;
    letter-spacing: -1px;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 14px;
    justify-content: space-between;
  }

  .hero-stats > div {
    min-width: 0;
    flex: 1;
  }

  .hero-stats strong,
  .hero-stats > div > span {
    font-size: 20px;
  }

  .hero-stats small {
    font-size: 8px;
  }

  .hero-visual {
    min-height: 435px;
  }

  .main-card {
    width: 88%;
  }

  .poster-preview {
    padding: 25px;
  }

  .poster-preview h2 {
    font-size: 46px;
  }

  .floating-card {
    min-width: 170px;
    padding: 11px;
  }

  .floating-one {
    top: 32px;
  }

  .floating-two {
    bottom: 38px;
  }

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

  .service-card {
    min-height: 285px;
  }

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

  .portfolio-item.wide {
    grid-column: span 1;
  }

  .portfolio-item.wide .work-visual,
  .work-visual {
    min-height: 310px;
  }

  .visual-banner {
    padding: 30px;
  }

  .banner-copy strong {
    font-size: 58px;
    letter-spacing: -3px;
  }

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

  .about-panel {
    min-height: 430px;
  }

  .machine-shape {
    transform: scale(.82);
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding-bottom: 90px;
  }

  .cta-card {
    padding: 35px 25px;
  }

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

  .contact-form {
    padding: 22px;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main > p {
    margin-inline-start: 0;
  }

  .back-to-top {
    position: absolute;
    left: 14px;
  }
}

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

/* ---------- Language switcher (KU / AR / EN) ---------- */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-inline-start: 14px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-2);
}

.lang-switch a {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  transition: 0.2s ease;
  direction: ltr;
}

.lang-switch a:hover {
  color: var(--gold-light);
}

.lang-switch a.active {
  background: var(--gold);
  color: #0a0a0a;
}

@media (max-width: 900px) {
  .lang-switch {
    margin-inline-start: 0;
    order: 3;
  }
}
