@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&family=Noto+Kufi+Arabic:wght@600;700;800&family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@600;700&display=swap");

:root {
  --ink: #062235;
  --sky: #0ea5e9;
  --cyan: #7dd3fc;
  --orange: #f97316;
  --teal: #14b8a6;
  --muted: #526274;
  --line: rgba(125, 211, 252, .22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "IBM Plex Sans Arabic", "Inter", sans-serif;
  color: var(--ink);
  background: #f8fbfd;
}

a { color: inherit; text-decoration: none; }
svg { display: block; }

.nav {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 2000;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  color: #e2f1fb;
  background: rgba(3, 12, 22, .9);
  border: 1px solid rgba(125, 211, 252, .2);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(8, 47, 73, .28);
  backdrop-filter: blur(18px);
  overflow: visible;
}

.nav::before { content: none; }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
  border: 1px solid rgba(219, 231, 238, .5);
}

.links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.links a,
.cta {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  color: #dbeafe;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}

.links a:hover,
.links a.active {
  color: white;
  background: rgba(14, 165, 233, .16);
}

.cta {
  color: white;
  background: linear-gradient(135deg, var(--orange), #0ea5e9 140%);
  box-shadow: 0 16px 36px rgba(249, 115, 22, .24);
}

.page-hero {
  position: relative;
  min-height: 420px;
  padding-top: 96px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 20% 20%, rgba(249, 115, 22, .24), transparent 24%),
    radial-gradient(circle at 78% 34%, rgba(14, 165, 233, .28), transparent 28%),
    linear-gradient(135deg, #020617, #082f49);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(125, 211, 252, .08) 1px, transparent 1px),
    linear-gradient(rgba(125, 211, 252, .08) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(700px) rotateX(58deg) translateY(20%);
  transform-origin: bottom;
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .55fr);
  gap: 32px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: #bae6fd;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(125, 211, 252, .22);
  font-weight: 700;
}

h1, h2 {
  margin: 0;
  font-family: "Noto Kufi Arabic", "Space Grotesk", sans-serif;
  letter-spacing: 0;
}

h1 {
  margin-top: 16px;
  max-width: 800px;
  font-size: clamp(2.4rem, 5.5vw, 5.6rem);
  line-height: 1.08;
}

.lead {
  max-width: 760px;
  margin: 20px 0 0;
  color: #dbeafe;
  font-size: 1.12rem;
  line-height: 1.9;
}

.hero-art {
  position: relative;
  min-height: 300px;
}

.orb {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(2,6,23,.75) 0 42%, rgba(14,165,233,.18) 43% 64%, transparent 65%),
    conic-gradient(from 210deg, var(--cyan), var(--orange), var(--teal), var(--cyan));
  transform: translate(-50%, -50%);
  box-shadow: 0 0 95px rgba(14,165,233,.36);
  animation: floatOrb 4s ease-in-out infinite alternate;
}

.orb img {
  width: 76%;
  height: 76%;
  border-radius: 50%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.ring {
  position: absolute;
  inset: 18%;
  border: 2px solid rgba(125, 211, 252, .4);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 12s linear infinite;
}

@keyframes spin { to { rotate: 360deg; } }
@keyframes floatOrb { to { transform: translate(-50%, -56%); } }

.section {
  padding: 78px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(280px, .5fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

h2 {
  color: #07364f;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.15;
}

.section-head p,
.card p,
.text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  position: relative;
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(14, 165, 233, .15);
  border-radius: 12px;
  background: linear-gradient(180deg, white, #f0f9ff);
  box-shadow: 0 18px 45px rgba(8, 47, 73, .1);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(8, 47, 73, .16);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--sky), var(--orange));
}

.icon-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(145deg, var(--sky), var(--orange));
  margin-bottom: 22px;
}

.icon-box svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  margin: 0 0 10px;
  color: #07364f;
  font-size: 1.3rem;
}

.rich-split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, .72fr);
  gap: 28px;
  align-items: center;
}

.text-panel {
  display: grid;
  gap: 16px;
}

.text-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.fact-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(14, 165, 233, .14);
  border-radius: 10px;
  background: rgba(255,255,255,.72);
}

.fact-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--orange));
  box-shadow: 0 0 16px rgba(14,165,233,.32);
}

.media-panel {
  position: relative;
  min-height: 420px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(125, 211, 252, .22);
  background:
    radial-gradient(circle at 28% 24%, rgba(14,165,233,.24), transparent 28%),
    linear-gradient(145deg, #082f49, #020617);
  box-shadow: 0 26px 80px rgba(8,47,73,.18);
}

.media-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(125,211,252,.08) 1px, transparent 1px),
    linear-gradient(rgba(125,211,252,.08) 1px, transparent 1px);
  background-size: 54px 54px;
}

.profile-logo-card {
  position: absolute;
  right: 50%;
  top: 42%;
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translate(50%, -50%);
  background:
    radial-gradient(circle, rgba(2,6,23,.7) 0 42%, rgba(14,165,233,.22) 43% 64%, transparent 65%),
    conic-gradient(from 210deg, var(--cyan), var(--orange), var(--teal), var(--cyan));
  box-shadow: 0 0 90px rgba(14,165,233,.36);
  animation: floatOrb 4s ease-in-out infinite alternate;
}

.profile-logo-card img {
  width: 78%;
  height: 78%;
  border-radius: 50%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.pdf-chip {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(125,211,252,.22);
  border-radius: 12px;
  color: #e0f2fe;
  background: rgba(2,6,23,.5);
  backdrop-filter: blur(14px);
}

.pdf-chip strong,
.pdf-chip span {
  display: block;
}

.pdf-chip span {
  color: #bae6fd;
  font-size: .9rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-step {
  position: relative;
  min-height: 210px;
  padding: 22px;
  border-radius: 12px;
  color: white;
  background: linear-gradient(145deg, #082f49, #020617);
  overflow: hidden;
}

.process-step::before {
  content: attr(data-step);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--sky), var(--orange));
  font-weight: 800;
}

.process-step p {
  color: #dbeafe;
  line-height: 1.75;
}

.image-strip {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

.image-card {
  min-height: 310px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(14,165,233,.18);
  box-shadow: 0 20px 50px rgba(8,47,73,.12);
  background: #082f49;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .86;
  filter: saturate(1.08) contrast(1.05);
}

.mini-table {
  display: grid;
  gap: 10px;
}

.mini-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(14,165,233,.14);
  border-radius: 10px;
  background: white;
  box-shadow: 0 12px 30px rgba(8,47,73,.06);
}

.mini-row strong {
  color: #07364f;
}

.mini-row span {
  color: var(--muted);
}

.dark-band {
  color: white;
  background:
    radial-gradient(circle at 20% 22%, rgba(249, 115, 22, .18), transparent 26%),
    linear-gradient(135deg, #020617, #082f49);
}

.dark-band h2,
.dark-band .card h3 { color: white; }

.dark-band .card {
  color: white;
  background: linear-gradient(145deg, rgba(2,6,23,.72), rgba(8,47,73,.62));
  border-color: rgba(125, 211, 252, .22);
}

.dark-band .card p,
.dark-band .section-head p { color: #dbeafe; }

.footer {
  padding: 24px 0;
  color: #bae6fd;
  background: #020617;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer .dev-by {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bae6fd;
  font-size: .92rem;
}

.footer .dev-by img {
  height: 22px;
  width: auto;
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal .7s ease forwards;
}

.reveal:nth-child(2) { animation-delay: .08s; }
.reveal:nth-child(3) { animation-delay: .16s; }
.reveal:nth-child(4) { animation-delay: .24s; }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== About page: animated feature cards ===== */
.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.af-card {
  position: relative;
  padding: 22px 22px 28px;
  border: 1px solid rgba(14, 165, 233, .16);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f0f9ff);
  box-shadow: 0 20px 50px rgba(8, 47, 73, .10);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.af-card:hover { transform: translateY(-8px); box-shadow: 0 30px 70px rgba(8, 47, 73, .18); }

.af-visual {
  position: relative;
  height: 172px;
  margin-bottom: 22px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(125, 211, 252, .22);
  background:
    radial-gradient(circle at 30% 26%, rgba(14,165,233,.30), transparent 30%),
    radial-gradient(circle at 76% 74%, rgba(249,115,22,.20), transparent 26%),
    linear-gradient(145deg, #082f49, #020617);
}

.af-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(125,211,252,.08) 1px, transparent 1px),
    linear-gradient(rgba(125,211,252,.08) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: .7;
}

.af-ring {
  position: absolute;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  border: 2px dashed rgba(125, 211, 252, .45);
  animation: spin 15s linear infinite;
}

.af-ring.r2 {
  width: 84px;
  height: 84px;
  border-style: solid;
  border-color: rgba(249, 115, 22, .35);
  border-top-color: rgba(125, 211, 252, .75);
  animation: spin 7s linear infinite reverse;
}

.af-scan {
  position: absolute;
  left: 12%;
  right: 12%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(125,211,252,.9), rgba(249,115,22,.8), transparent);
  box-shadow: 0 0 18px rgba(125,211,252,.6);
  animation: afScan 4s ease-in-out infinite;
}

@keyframes afScan {
  0%, 100% { transform: translateY(-58px); opacity: .15; }
  50% { transform: translateY(58px); opacity: .9; }
}

.af-ico {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(145deg, var(--sky), var(--orange));
  box-shadow: 0 14px 30px rgba(14,165,233,.4);
  animation: afFloat 4s ease-in-out infinite alternate;
}

@keyframes afFloat { to { transform: translateY(-8px); } }

.af-ico::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 2px solid rgba(125,211,252,.45);
  animation: afPulse 2.6s ease-out infinite;
}

@keyframes afPulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.3); opacity: 0; } }

.af-ico svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.af-card h3 { margin: 0 0 10px; color: #07364f; font-size: 1.32rem; }
.af-card p { margin: 0; color: var(--muted); line-height: 1.85; }

/* ===== About page: Founder message band ===== */
.chair-band {
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(249,115,22,.20), transparent 30%),
    radial-gradient(circle at 12% 80%, rgba(14,165,233,.22), transparent 32%),
    linear-gradient(135deg, #020617, #082f49);
}

.chair-wrap {
  display: grid;
  grid-template-columns: minmax(0, .42fr) minmax(0, .85fr);
  gap: 40px;
  align-items: center;
}

.chair-photo {
  position: relative;
  width: min(340px, 92%);
  margin: 0 auto;
  opacity: 1;
  animation: chairFloat 4.6s ease-in-out infinite alternate;
}

@keyframes chairFloat { to { transform: translateY(-12px); } }

.chair-photo::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 30px;
  background: conic-gradient(from 210deg, var(--cyan), var(--orange), var(--teal), var(--cyan));
  filter: blur(16px);
  opacity: .5;
  z-index: 0;
}

.chair-photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 440px;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 22px;
  background: radial-gradient(circle at 50% 30%, #12507a, #061a2c 78%);
  border: 3px solid rgba(125, 211, 252, .55);
  box-shadow: 0 22px 55px rgba(0,0,0,.5);
}

.chair-badge {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sky), var(--orange));
  color: #fff;
  font-weight: 800;
  font-size: .84rem;
  box-shadow: 0 10px 24px rgba(14,165,233,.45);
}

.chair-copy { display: grid; gap: 18px; }
.chair-copy .eyebrow { color: #bae6fd; background: rgba(255,255,255,.08); }

.chair-quote {
  position: relative;
  margin: 0;
  padding-inline-start: 34px;
  font-family: "Noto Kufi Arabic", "Space Grotesk", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.9;
  color: #eaf6ff;
}

.chair-quote::before {
  content: "\201C";
  position: absolute;
  inset-inline-start: -4px;
  top: -18px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(125,211,252,.55);
}

.chair-name { display: grid; gap: 4px; }
.chair-name .role { color: #7dd3fc; font-weight: 600; }
.chair-name strong { color: #fff; font-size: 1.15rem; }

/* ===== About page: animated service showcase (from homepage) ===== */
.service-showcase {
  position: relative;
  min-height: 460px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 26%, rgba(14,165,233,.28), transparent 28%),
    radial-gradient(circle at 76% 72%, rgba(249,115,22,.18), transparent 22%),
    linear-gradient(145deg, #082f49, #020617);
  border: 1px solid rgba(125,211,252,.2);
  box-shadow: 0 30px 80px rgba(8,47,73,.28);
  overflow: hidden;
  perspective: 1000px;
  transform: perspective(900px) rotateY(-5deg) rotateX(2deg);
}

.service-showcase .icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.showcase-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(125,211,252,.08) 1px, transparent 1px),
    linear-gradient(rgba(125,211,252,.08) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: .8;
}

.showcase-base {
  position: absolute;
  left: 16%;
  right: 10%;
  bottom: 18%;
  height: 42%;
  border: 1px solid rgba(125,211,252,.32);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(14,165,233,.12) 1px, transparent 1px),
    linear-gradient(rgba(14,165,233,.12) 1px, transparent 1px),
    rgba(2,6,23,.18);
  background-size: 34px 34px;
  transform: rotateX(64deg) rotateZ(-12deg);
  box-shadow: 0 28px 70px rgba(0,0,0,.28), inset 0 0 50px rgba(14,165,233,.12);
}

.showcase-building {
  position: absolute;
  right: 18%;
  bottom: 27%;
  width: 190px;
  height: 220px;
  transform-style: preserve-3d;
  transform: rotateX(60deg) rotateZ(-18deg);
  filter: drop-shadow(0 28px 28px rgba(0,0,0,.3));
}

.showcase-building span {
  position: absolute;
  bottom: 0;
  width: 48px;
  border-radius: 8px 8px 3px 3px;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.22) 0 2px, transparent 2px 24px),
    linear-gradient(180deg, #38bdf8, #075985);
  box-shadow: inset -10px 0 0 rgba(2,6,23,.18), 0 0 22px rgba(14,165,233,.18);
}

.showcase-building span:nth-child(1) { right: 0; height: 150px; }
.showcase-building span:nth-child(2) { right: 58px; height: 210px; }
.showcase-building span:nth-child(3) { right: 116px; height: 118px; background: linear-gradient(180deg, #fb923c, #9a3412); }

.showcase-ac {
  position: absolute;
  left: 14%;
  top: 22%;
  width: 178px;
  height: 112px;
  border-radius: 10px;
  background: linear-gradient(145deg, #f8fafc, #94a3b8);
  box-shadow: 0 24px 50px rgba(0,0,0,.32), 0 0 35px rgba(125,211,252,.2);
  transform: rotateZ(-5deg);
}

.showcase-ac .fan {
  position: absolute;
  right: 24px;
  top: 22px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 9px solid #334155;
  background: conic-gradient(#0f172a 0 18%, #cbd5e1 18% 34%, #0f172a 34% 52%, #cbd5e1 52% 68%, #0f172a 68% 86%, #cbd5e1 86%);
  animation: fanSpin 3s linear infinite;
}

@keyframes fanSpin {
  to { rotate: 360deg; }
}

.showcase-ac .vent {
  position: absolute;
  left: 18px;
  width: 54px;
  height: 8px;
  border-radius: 999px;
  background: #334155;
}

.showcase-ac .v1 { top: 36px; }
.showcase-ac .v2 { top: 58px; }

.air {
  position: absolute;
  left: 30%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(125,211,252,0), rgba(125,211,252,.9), rgba(255,255,255,.6), rgba(125,211,252,0));
  filter: drop-shadow(0 0 12px rgba(125,211,252,.7));
  animation: airFlow 3.8s ease-in-out infinite;
}

.air-one { top: 34%; width: 46%; }
.air-two { top: 43%; width: 38%; animation-delay: .45s; }
.air-three { top: 52%; width: 50%; animation-delay: .9s; }

@keyframes airFlow {
  from { transform: translateX(-24px); opacity: .16; }
  45% { opacity: .95; }
  to { transform: translateX(48px); opacity: .12; }
}

.showcase-badge {
  position: absolute;
  right: 28px;
  top: 28px;
  padding: 12px 14px;
  border: 1px solid rgba(125,211,252,.28);
  border-radius: 8px;
  color: #e0f2fe;
  background: rgba(2,6,23,.48);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

.showcase-badge strong,
.showcase-badge span {
  display: block;
  direction: ltr;
  text-align: left;
}

.showcase-badge span {
  margin-top: 3px;
  color: #bae6fd;
  font-size: .82rem;
}

.mini-crane {
  position: absolute;
  left: 26%;
  bottom: 38%;
  width: 250px;
  height: 175px;
  transform: rotateZ(-9deg);
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.22));
}

.mini-crane span {
  position: absolute;
  display: block;
  border-radius: 4px;
}

.crane-mast {
  right: 42px;
  bottom: 0;
  width: 14px;
  height: 150px;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.32) 0 4px, transparent 4px 10px), linear-gradient(#fb923c, #f97316);
}

.crane-arm {
  right: 0;
  top: 26px;
  width: 220px;
  height: 14px;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.3) 0 4px, transparent 4px 11px), linear-gradient(90deg, #f97316, #facc15);
}

.crane-cable {
  left: 42px;
  top: 39px;
  width: 2px;
  height: 82px;
  background: rgba(255,255,255,.64);
  animation: hookDrop 3.8s ease-in-out infinite alternate;
}

.crane-cable::after {
  content: "";
  position: absolute;
  left: -13px;
  bottom: -20px;
  width: 28px;
  height: 20px;
  border: 4px solid #fb923c;
  border-top: 0;
  border-radius: 0 0 16px 16px;
}

@keyframes hookDrop {
  from { height: 64px; }
  to { height: 96px; }
}

.pipe-network {
  position: absolute;
  left: 12%;
  right: 13%;
  bottom: 12%;
  height: 110px;
}

.pipe {
  position: absolute;
  display: block;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0ea5e9, #7dd3fc, #f97316);
  box-shadow: 0 0 22px rgba(14,165,233,.32);
}

.p1 { left: 0; right: 22%; top: 18px; transform: rotate(-7deg); }
.p2 { left: 16%; right: 0; top: 58px; transform: rotate(8deg); }
.p3 { left: 38%; right: 18%; top: 92px; transform: rotate(-2deg); background: linear-gradient(90deg, #f97316, #7dd3fc); }

.node {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e0f2fe;
  border: 5px solid #0ea5e9;
  box-shadow: 0 0 28px rgba(125,211,252,.52);
}

.n1 { left: 30%; top: 8px; }
.n2 { right: 24%; top: 48px; border-color: #f97316; }

.tool-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid rgba(125,211,252,.28);
  border-radius: 999px;
  color: #e0f2fe;
  background: rgba(2,6,23,.52);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
  animation: chipFloat 3.4s ease-in-out infinite alternate;
}

.tool-chip .icon {
  width: 18px;
  height: 18px;
  color: #fed7aa;
}

.chip-one { right: 7%; top: 42%; }
.chip-two { left: 9%; bottom: 33%; animation-delay: .75s; }

@keyframes chipFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-12px); }
}

.scan-beam {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 16%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(125,211,252,.95), rgba(249,115,22,.8), transparent);
  box-shadow: 0 0 24px rgba(125,211,252,.5);
  animation: showcaseScan 4.5s ease-in-out infinite;
}

@keyframes showcaseScan {
  0%, 100% { transform: translateY(0); opacity: .12; }
  50% { transform: translateY(280px); opacity: .86; }
}

@media (max-width: 850px) {
  .links { display: none; }
  .hero-inner,
  .section-head,
  .grid-3,
  .grid-2,
  .rich-split,
  .process,
  .image-strip { grid-template-columns: 1fr; }
  .hero-art { min-height: 240px; }
  .about-feature-grid { grid-template-columns: 1fr; }
  .chair-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .service-showcase { min-height: 380px; transform: none; }
  .chair-photo img { height: 380px; }
}
