/* ===================================================================
   MOHSIM ENTERPRISES — shared stylesheet (light modern shop theme)
   =================================================================== */
:root {
  --bg: #faf6ee;
  --bg-2: #f2e8d6;
  --card: #ffffff;
  --ink: #1a232d;
  --ink-soft: #516170;
  --muted: #87919c;
  --rust: #8a1220;
  --rust-dark: #650c17;
  --mustard: #c69641;
  --sage: #3c5568;
  --dark: #0a1a29;
  --dark-2: #102437;
  --line: rgba(26, 35, 45, 0.10);
  --line-dark: rgba(250, 245, 236, 0.14);
  --shadow-sm: 0 6px 16px rgba(10, 26, 41, 0.08);
  --shadow-md: 0 16px 40px rgba(10, 26, 41, 0.12);
  --shadow-lg: 0 24px 60px rgba(10, 26, 41, 0.20);
  --radius: 18px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --maxw: 1240px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.16, 1, .3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

h1,
h2,
h3,
h4 {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 700;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

section {
  position: relative;
}

/* About, Clients, Contact, Index, Network, Products, Services Page - wrap section */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 36px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
}

::selection {
  background: var(--rust);
  color: #fff;
}

/* About, Clients, Contact, Index, Network, Products, Services Page - eyebrow section */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rust);
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--rust);
  border-radius: 2px;
  display: inline-block;
}

.eyebrow.on-dark {
  color: var(--mustard);
}

.eyebrow.on-dark::before {
  background: var(--mustard);
}

/* ---------------- grain (kept very subtle) + cursor + progress ---------------- */
/* About, Clients, Contact, Index, Network, Products, Services Page - grain section */
.grain {
  display: none;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rust), var(--mustard));
  z-index: 1100;
  width: 0%;
  border-radius: 0 3px 3px 0;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1200;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--rust);
  transition: opacity .2s;
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--rust);
  transition: width .25s var(--ease), height .25s var(--ease), opacity .2s, border-color .25s, background .25s;
}

.cursor-ring.hovered {
  width: 52px;
  height: 52px;
  background: rgba(193, 81, 47, 0.08);
}

.cursor-ring.on-dark {
  border-color: var(--rust);
}

@media (hover:none),
(pointer:coarse) {

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ---------------- preloader ---------------- */
/* About, Clients, Contact, Index, Network, Products, Services Page - preloader section */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

/* About, Clients, Contact, Index, Network, Products, Services Page - pre-logo section */
.pre-logo {
  position: relative;
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pre-logo img {
  width: 52px;
  height: auto;
  opacity: 0;
  transform: scale(0.7);
  animation: preLogoIn 0.9s var(--ease) 0.15s forwards, preLogoSpin 3.2s linear 1s infinite;
  filter: drop-shadow(0 4px 14px rgba(10, 26, 41, 0.18));
}

.pre-logo svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.preloader .ring {
  fill: none;
  stroke: var(--rust);
  stroke-width: 3;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  stroke-linecap: round;
}

.preloader .word {
  font-family: 'Inter';
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--ink-soft);
  text-transform: uppercase;
  position: relative;
}

.preloader .word::after {
  content: '';
  display: inline-block;
  width: 0;
  overflow: hidden;
  animation: preDots 1.2s steps(4) infinite;
  vertical-align: bottom;
}

@keyframes preLogoIn {
  from {
    opacity: 0;
    transform: scale(0.7) rotate(-12deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes preLogoSpin {

  0%,
  85% {
    transform: rotate(0deg) scale(1);
  }

  92% {
    transform: rotate(180deg) scale(1.06);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes preDots {
  to {
    width: 1.2em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pre-logo img {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ---------------- utility bar ---------------- */
/* About, Clients, Contact, Index, Network, Products, Services Page - utility-bar section */
.utility-bar {
  background: var(--dark);
  color: rgba(250, 245, 236, 0.85);
  font-size: 12.5px;
  padding: 8px 0;
}

.utility-bar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.utility-bar .marq {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  overflow: hidden;
}

.utility-bar a {
  color: var(--mustard);
  font-weight: 600;
}

/* ---------------- nav ---------------- */
/* About, Clients, Contact, Index, Network, Products, Services Page - site-header-fixed section */
.site-header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  transition: transform .45s var(--ease);
}

header.site-nav {
  position: relative;
  background: rgba(250, 245, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}

/* About, Clients, Contact, Index, Network, Products, Services Page - nav-inner section */
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  gap: 20px;
}

/* About, Clients, Contact, Index, Network, Products, Services Page - brandmark section */
.brandmark {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
}

.brandmark .seal {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  transition: transform .4s var(--ease);
}

.brandmark .seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brandmark:hover .seal {
  transform: rotate(-8deg) scale(1.06);
}

.brandmark .word {
  font-family: 'Poppins';
  font-size: 18px;
  letter-spacing: -0.01em;
  font-weight: 700;
}

.brandmark .word span {
  color: var(--rust);
}

nav.links {
  position: relative;
  display: flex;
  gap: 2px;
  font-family: 'Inter';
  font-size: 14px;
  font-weight: 500;
}

nav.links .links-row {
  display: flex;
  align-items: center;
  position: relative;
}

nav.links>a,
nav.links>.drop {
  position: relative;
}

nav.links a.top-link {
  display: block;
  padding: 10px 16px;
  color: var(--ink-soft);
  transition: color .25s;
  border-radius: var(--radius-pill);
}

nav.links a.top-link:hover,
nav.links a.top-link.active {
  color: var(--ink);
}

/* About, Clients, Contact, Index, Network, Products, Services Page - nav-indicator section */
.nav-indicator {
  position: absolute;
  bottom: 0;
  height: 3px;
  background: var(--rust);
  border-radius: 3px;
  transition: left .35s var(--ease-soft), width .35s var(--ease-soft);
}

/* About, Clients, Contact, Index, Network, Products, Services Page - drop section */
.drop {
  padding: 0;
}

.drop>a {
  padding: 10px 16px;
  display: block;
}

/* About, Clients, Contact, Index, Network, Products, Services Page - mega section */
.mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 640px;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  box-shadow: var(--shadow-lg);
}

.drop:hover .mega,
.drop:focus-within .mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}

.mega a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 12px;
  border-radius: var(--radius-sm);
  transition: background .2s;
}

.mega a:hover {
  background: var(--bg);
}

.mega a b {
  font-family: 'Poppins';
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}

.mega a span {
  font-family: 'Inter';
  font-size: 12px;
  color: var(--muted);
}

/* About, Clients, Contact, Index, Network, Products, Services Page - nav-cta section */
.nav-cta {
  font-family: 'Inter';
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  background: var(--rust);
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: background .25s, transform .25s;
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  background: var(--rust-dark);
  transform: translateY(-1px);
}

/* About, Clients, Contact, Index, Network, Products, Services Page - burger section */
.burger {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 6px;
  width: 30px;
  height: 22px;
  position: relative;
}

.burger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}

.burger span:nth-child(1) {
  top: 0;
}

.burger span:nth-child(2) {
  top: 10px;
}

.burger span:nth-child(3) {
  top: 20px;
}

.burger.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* About, Clients, Contact, Index, Network, Products, Services Page - mobile-panel section */
.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(340px, 86%);
  background: var(--card);
  z-index: 390;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  padding: 100px 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.mobile-panel.open {
  transform: translateX(0);
}

.mobile-panel a {
  font-family: 'Poppins';
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.mobile-panel .sub {
  padding-left: 14px;
}

.mobile-panel .sub a {
  font-family: 'Inter';
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 9px 0;
  border-bottom: none;
}

/* About, Clients, Contact, Index, Network, Products, Services Page - mobile-backdrop section */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28, 23, 18, 0.4);
  z-index: 380;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.mobile-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* ---------------- buttons ---------------- */
/* About, Clients, Contact, Index, Network, Products, Services Page - btn section */
.btn {
  font-family: 'Inter';
  font-size: 14.5px;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1.5px solid transparent;
}

.btn span {
  position: relative;
  z-index: 2;
}

/* Contact, Index, Products Page - btn-primary section */
.btn-primary {
  background: var(--rust);
  color: #fff;
}

.btn-primary:hover {
  background: var(--rust);
}

/* About, Clients, Index, Network, Products, Services Page - btn-ghost section */
.btn-ghost {
  color: var(--rust);
  border-color: var(--rust);
}

.btn-ghost:hover {
   background: var(--rust);
    color: #fff;
    border-color: var(--rust);
}

.btn-ghost.on-light {
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ghost.on-light:hover {
  background: var(--rust);
  color: #fff;
  border-color: var(--rust);
}

.btn-ghost.on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost.on-dark:hover {
  background: #fff;
  color: var(--dark);
}

/* Index, Products Page - btn-row section */
.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn.small {
  padding: 10px 20px;
  font-size: 13px;
}

/* ---------------- badges / tags ---------------- */
/* Network Page - tag-badge section */
.tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--mustard);
  color: var(--dark);
}

.tag-badge.rust {
  background: var(--rust);
  color: #fff;
}

.tag-badge.sage {
  background: var(--sage);
  color: #fff;
}

/* ---------------- page hero (inner pages) ---------------- */
/* About, Clients, Contact, Network, Products, Services Page - page-hero section */
.page-hero {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  color: var(--ink);
  padding: 160px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero .crumb {
  font-family: 'Inter';
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.page-hero .crumb a {
  color: var(--rust);
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  position: relative;
  z-index: 2;
  max-width: 20ch;
}

.page-hero p {
  margin-top: 18px;
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: 1.06rem;
  position: relative;
  z-index: 2;
}

/* ---------------- hero (home) ---------------- */
/* Index Page - hero section */
.hero {
  min-height: auto;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 65%);
  color: var(--ink);
  padding: 150px 0 60px;
  position: relative;
  overflow: hidden;
}

/* Index Page - hero-grid section */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  margin-bottom: 22px;
  overflow: hidden;
}

.hero h1 .line {
  display: block;
  overflow: hidden;
}

.hero h1 .line span {
  display: inline-block;
  will-change: transform;
}

.hero h1 .accent {
  color: var(--rust);
}

.hero p.lead {
  max-width: 50ch;
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-bottom: 30px;
}

.trust-row {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.trust-row .item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

.trust-row svg {
  width: 18px;
  height: 18px;
  stroke: var(--rust);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
}

.hero-visual .frame-a {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-visual .frame-a img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.hero-visual .floater {
  position: absolute;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-visual .floater.f1 {
  top: -22px;
  left: -22px;
}

.hero-visual .floater.f2 {
  bottom: -22px;
  right: -22px;
}

.hero-visual .floater b {
  display: block;
  font-family: 'Poppins';
  font-size: 1.1rem;
}

.hero-visual .floater span {
  font-size: 11.5px;
  color: var(--muted);
}

.hero-visual .floater .dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--mustard);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-visual .floater .dot svg {
  width: 18px;
  height: 18px;
  stroke: var(--dark);
}

/* ---------------- category circles ---------------- */
.cat-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  width: 110px;
}

.cat-item .circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s;
}

.cat-item:hover .circle {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.cat-item .circle svg {
  width: 32px;
  height: 32px;
  stroke: var(--rust);
  fill: none;
}

.cat-item b {
  font-size: 13.5px;
  font-weight: 600;
}

.cat-item span {
  font-size: 11px;
  color: var(--muted);
}

/* ---------------- promo tiles ---------------- */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 56px;
}

.promo-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 230px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-md);
}

.promo-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 23, 18, 0.05) 20%, rgba(28, 23, 18, 0.72) 100%);
}

.promo-tile-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  color: #fff;
}

.promo-tile-content h3 {
  font-size: 1.5rem;
  margin: 10px 0 16px;
  max-width: 16ch;
}

/* ---------------- panels ---------------- */
/* About, Clients, Contact, Index, Network, Products, Services Page - panel section */
.panel {
  padding: 110px 0;
}

.panel.tight {
  padding: 80px 0;
}

.panel.dark {
  background: var(--dark);
  color: #faf5ec;
}

.panel.alt {
  background: var(--bg-2);
}

/* About Page - rule section */
.rule {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* About, Services Page - split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

h2.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  max-width: 18ch;
}

p.section-lead {
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: 1.03rem;
  margin-top: 16px;
}

.panel.dark p.section-lead {
  color: rgba(250, 245, 236, 0.72);
}

/* Index, Network Page - section-head-row section */
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

/* Index, Products Page - view-all section */
.view-all {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--rust);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Clients, Index, Network Page - tag-strip section */
.tag-strip {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 52px;
}

.tag-strip .stat {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  flex: 1;
  min-width: 140px;
}

.tag-strip .stat b {
  display: block;
  font-family: 'Poppins';
  font-size: 2rem;
  color: var(--rust);
  font-weight: 700;
}

.tag-strip .stat span {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

/* ---------------- image reveal ---------------- */
figure.frame {
  margin: 0;
  position: relative;
}

figure.frame .clip {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

figure.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform .8s var(--ease-soft);
}

figure.frame:hover img {
  transform: scale(1.0);
}

figure.frame figcaption {
  font-family: 'Inter';
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
}

/* ---------------- values checklist ---------------- */
/* About, Products, Services Page - value-list section */
.value-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.value-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}

.value-list li:first-child {
  border-top: 1px solid var(--line);
}

.value-list .tick {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.value-list .tick svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
}

.value-list b {
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 1rem;
}

.value-list p {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ---------------- cards: services / products ---------------- */
/* Network, Products Page - card-grid section */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.card-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Network Page - tilt-card section */
.tilt-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, transform .3s;
  perspective: 800px;
}

.tilt-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.tilt-card .inner {
  transition: transform .25s var(--ease-soft);
  transform-style: preserve-3d;
}

.tilt-card .code {
  font-family: 'Inter';
  font-size: 11.5px;
  font-weight: 700;
  color: var(--rust);
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.tilt-card h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.tilt-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0 0 18px;
}

.tilt-card ul.spec {
  list-style: none;
  margin: 0 0 6px;
  padding: 0;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tilt-card ul.spec li {
  background: var(--bg-2);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
}

/* Network Page - media section */
.media {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  background: var(--bg-2);
  position: relative;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.tilt-card:hover .media img {
  transform: scale(1.06);
}

.media.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-2), var(--card));
}

.media.icon svg {
  width: 52px;
  height: 52px;
  stroke: var(--rust);
  fill: none;
}

.media.icon.dark {
  background: linear-gradient(135deg, var(--dark-2), var(--dark));
}

.media.icon.dark svg {
  stroke: var(--mustard);
}

/* ---------------- process timeline (real sequence) ---------------- */
/* Services Page - timeline section */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 56px;
}

/* Services Page - tl-step section */
.tl-step {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}

.tl-step .dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rust);
  color: #fff;
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.tl-step b {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
  font-family: 'Poppins';
}

.tl-step p {
  color: var(--ink-soft);
  font-size: 0.87rem;
}

/* ---------------- sustainability / cta banner ---------------- */
/* About Page - sustain section */
/* About Page - sustain image only section */
.sustain {
  height: 520px;
  min-height: 520px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.sustain .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sustain .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
  display: block;
}

.sustain .bg img {
  opacity: 2; /* image full visible rakho */
}


/* About Page - sustain-content section */
.sustain-content {
  position: relative;
  z-index: 2;
  padding: 64px 0 56px;
  max-width: 640px;
}

.sustain h2 {
  font-size: clamp(1.8rem, 3.1vw, 2.3rem);
  margin-bottom: 16px;
  color: #fff;
}

.sustain p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  max-width: 56ch;
}

@media (max-width:560px) {
  .sustain {
    height: 420px;
    min-height: 420px;
  }

  .sustain .bg img {
    object-fit: cover;
    object-position: 20% center;
    transform: none;
  }
}

/* About, Clients, Index, Network, Products, Services Page - cta-banner section */
.cta-banner {
  background: linear-gradient(120deg, var(--rust), var(--rust-dark));
  color: #fff;
  padding: 64px 0;
  border-radius: 0;
}

.cta-banner .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  max-width: 22ch;
  color: #fff;
}

/* ---------------- network / hub ---------------- */
/* Index, Network Page - network-grid section */
.network-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

/* Index, Network Page - hub-wrap section */
.hub-wrap {
  position: relative;
}

.hub-wrap svg {
  width: 100%;
  height: auto;
}

/* Index, Network Page - hub-orbit section */
.hub-orbit {
  fill: none;
  stroke: var(--rust);
  stroke-width: 1;
  opacity: 0.28;
  transform-origin: 210px 210px;
  animation: hubOrbitSpin 26s linear infinite;
}

/* Index, Network Page - hub-orbit-2 section */
.hub-orbit-2 {
  stroke: var(--mustard);
  opacity: 0.24;
  animation-duration: 34s;
  animation-direction: reverse;
}

@keyframes hubOrbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
/* Index, Network Page - hub-orbit section */
  .hub-orbit {
    animation: none;
  }
}

.hub-line {
  fill: none;
  stroke: var(--mustard);
  stroke-width: 1.2;
  opacity: 0.8;
}

.hub-node circle {
  fill: var(--dark);
  stroke: var(--mustard);
  stroke-width: 1.4;
}

.hub-node text {
  fill: #faf5ec;
  font-family: 'Inter';
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hub-center circle {
  fill: var(--rust);
  stroke: var(--mustard);
}

.hub-center text {
  fill: #fff;
  font-family: 'Poppins';
  font-size: 10px;
  font-weight: 700;
}

.hub-pulse {
  fill: var(--mustard);
}

.hub-runner {
  fill: #fff;
}

/* ---------------- marquee ---------------- */
.marquee-row {
  overflow: hidden;
  position: relative;
  margin-top: 16px;
  padding: 18px 0;
}

.marquee-row .lane-label {
  position: absolute;
  left: 36px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: var(--bg);
  padding-right: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--rust);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: scrollLeft 34s linear infinite;
  padding-left: 160px;
}

.marquee-row.reverse .marquee-track {
  animation: scrollRight 34s linear infinite;
}

.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}

.chip {
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  color: var(--ink);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 9px;
}

.chip::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--rust);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* ---------------- why choose ---------------- */
/* About Page - why-grid section */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 16px;
}

/* About Page - why-photos section */
.why-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.why-photos figure:nth-child(2) {
  margin-top: 34px;
}

/* About Page - why-list section */
.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.why-list li:first-child {
  border-top: 1px solid var(--line);
}

.why-list .num {
  font-family: 'Poppins';
  color: var(--rust);
  font-weight: 700;
  font-size: 13px;
  padding-top: 2px;
}

.why-list b {
  display: block;
  margin-bottom: 4px;
  font-family: 'Poppins';
}

.why-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

/* ---------------- clients ---------------- */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 46px;
  perspective: 900px;
}

.client-chip {
  --accent: var(--rust);
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 22px 18px 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  min-height: 88px;
  line-height: 1.3;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.client-chip::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
  transform: scaleY(0.3);
  transform-origin: top;
  transition: transform .35s var(--ease);
}

.client-chip:hover {
  transform: translateY(-6px) rotateX(4deg);
  box-shadow: var(--shadow-md);
}

.client-chip:hover::before {
  transform: scaleY(1);
}

.client-chip .chip-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  transition: color .3s;
}

.client-chip:hover .chip-name {
  color: var(--accent);
}

.client-chip .chip-cat {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.client-chip.cat-textile {
  --accent: #8a1220;
}

.client-chip.cat-government {
  --accent: #0a1a29;
}

.client-chip.cat-healthcare {
  --accent: #3c5568;
}

.client-chip.cat-telecom {
  --accent: #c69641;
}

.client-chip.cat-technology {
  --accent: #65707c;
}

.client-chip.cat-trading {
  --accent: #a3401f;
}

.client-chip.cat-manufacturing {
  --accent: #57402a;
}

/* Network Page - client-filter section */
.client-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 26px 0 0;
}

.client-filter button {
  font-size: 12.5px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  background: var(--card);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .25s;
}

.client-filter button.active,
.client-filter button:hover {
  border-color: var(--rust);
  color: var(--rust);
  background: var(--card);
}

.client-filter button.active {
  background: var(--rust);
  color: #fff;
  border-color: var(--rust);
}

/* ---------------- contact ---------------- */
/* Contact Page - contact-grid section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Contact Page - info-card section */
.info-card {
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 14px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.info-card .k {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--rust);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.info-card .v {
  font-size: 1.02rem;
}

/* Contact Page - form-field section */
.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--card);
  padding: 13px 16px;
  font-family: 'Inter';
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 48px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%),
    linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--rust);
  outline: none;
  box-shadow: 0 0 0 4px rgba(138, 18, 32, 0.10);
}

/* Contact Page - route-graphic section */
.route-graphic {
  border-radius: var(--radius);
  padding: 20px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
  margin-top: 22px;
}

/* ---------------- footer ---------------- */
footer {
  background: var(--dark);
  color: #faf5ec;
  padding: 80px 0 26px;
}

/* About, Clients, Contact, Index, Network, Products, Services Page - footer-grid section */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 35px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--line-dark);
}

/* About, Clients, Contact, Index, Network, Products, Services Page - footer-logo section */
.footer-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #faf6ee;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand .word {
  font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.footer-brand .word span {
  color: var(--rust);
}

.footer-brand p {
  color: rgba(250, 245, 236, 0.6);
  max-width: 36ch;
  font-size: 0.9rem;
}

.footer-col h4 {
  font-family: 'Inter';
  font-size: 12px;
  font-weight: 700;
  color: var(--rust);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col p,
.footer-col a {
  display: block;
  color: rgba(250, 245, 236, 0.78);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 9px;
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--rust);
}

/* About, Clients, Contact, Index, Network, Products, Services Page - footer-bottom section */
.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    padding-top: 22px;
    font-size: 11.5px;
    color: rgba(250,245,236,0.5);
}

.footer-powered {
    text-align: center;
}

.footer-powered a {
    color: var(--rust);
}

.footer-status {
    justify-self: end;
}

/* ---------------- back to top ---------------- */
/* About, Clients, Contact, Index, Network, Products, Services Page - to-top section */
.to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 52px;
  height: 52px;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.to-top svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.to-top circle {
  fill: var(--dark);
  stroke: var(--line-dark);
  stroke-width: 2;
}

.to-top .prog {
  fill: none;
  stroke: var(--rust);
  stroke-width: 2;
  stroke-dasharray: 145;
  stroke-dashoffset: 145;
}

.to-top .arrow {
  stroke: #fff;
  stroke-width: 1.6;
  fill: none;
}

/* ---------------- reveal utilities ---------------- */
/* About, Clients, Contact, Index, Network, Products, Services Page - reveal section */
.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal-clip .clip {
  clip-path: inset(0 0 100% 0);
}

/* Contact Page - reveal-left section */
.reveal-left {
  opacity: 0;
  transform: translateX(-34px);
}

/* About, Contact, Products Page - reveal-right section */
.reveal-right {
  opacity: 0;
  transform: translateX(34px);
}

/* Clients, Index, Network Page - reveal-scale section */
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
}

.reveal-rotate {
  opacity: 0;
  transform: translateY(24px) rotate(-3deg);
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none !important;
  }

/* About, Clients, Contact, Index, Network, Products, Services Page - reveal section */
  .reveal,
  .reveal-clip .clip,
/* Contact Page - reveal-left section */
  .reveal-left,
/* About, Contact, Products Page - reveal-right section */
  .reveal-right,
/* Clients, Index, Network Page - reveal-scale section */
  .reveal-scale,
  .reveal-rotate {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}

/* ---------------- link underline micro-interaction ---------------- */
.footer-col a,
/* Index, Products Page - view-all section */
.view-all,
.page-hero .crumb a {
  position: relative;
}

.footer-col a::after,
.view-all::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

.footer-col a:hover::after,
.view-all:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Index, Products Page - view-all section */
.view-all {
  transition: gap .3s var(--ease);
}

.view-all:hover {
  gap: 10px;
}

/* ---------------- responsive ---------------- */
@media (max-width:980px) {
  nav.links {
    display: none;
  }

/* About, Clients, Contact, Index, Network, Products, Services Page - burger section */
  .burger {
    display: block;
  }

/* Index Page - hero-grid section */
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 24px;
  }

/* About, Services Page - split section */
  .split,
/* About Page - why-grid section */
  .why-grid,
/* Index, Network Page - network-grid section */
  .network-grid,
/* Contact Page - contact-grid section */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

/* Network, Products Page - card-grid section */
  .card-grid,
  .card-grid.cols-3 {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

/* About, Clients, Contact, Index, Network, Products, Services Page - footer-grid section */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

/* Services Page - timeline section */
  .timeline {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .cat-row {
    justify-content: center;
  }
}

@media (max-width:560px) {
/* About, Clients, Contact, Index, Network, Products, Services Page - wrap section */
  .wrap {
    padding: 0 20px;
  }

/* About, Clients, Contact, Index, Network, Products, Services Page - panel section */
  .panel {
    padding: 70px 0;
  }

/* Index Page - hero section */
  .hero {
    padding: 130px 0 50px;
  }

/* About, Clients, Contact, Index, Network, Products, Services Page - footer-grid section */
  .footer-grid {
    grid-template-columns: 1fr;
  }

/* About, Clients, Contact, Index, Network, Products, Services Page - utility-bar section */
  .utility-bar {
    display: none;
  }
}

/* ===================================================================
   PRO EXPERIENCE UPGRADE — motion-led commercial interface
   =================================================================== */
:root {
  --bg: #f7f3eb;
  --bg-2: #eee7dc;
  --card: #fffdf9;
  --ink: #0b1b2a;
  --ink-soft: #465767;
  --muted: #7b8792;
  --rust: #9f1020;
  --rust-dark: #630711;
  --mustard: #d2a65a;
  --dark: #071521;
  --dark-2: #0c2234;
  --line: rgba(7, 21, 33, .11);
  --shadow-sm: 0 10px 30px rgba(7, 21, 33, .08);
  --shadow-md: 0 22px 60px rgba(7, 21, 33, .14);
  --shadow-lg: 0 40px 100px rgba(7, 21, 33, .24);
}

body {
  background:
    radial-gradient(circle at 12% 2%, rgba(210, 166, 90, .08), transparent 28%),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .24;
  background-image: linear-gradient(rgba(7, 21, 33, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 21, 33, .025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 70%)
}

/* About, Clients, Contact, Index, Network, Products, Services Page - site-header-fixed section */
.site-header-fixed {
  will-change: transform;
}

header.site-nav {
  background: rgba(247, 243, 235, .82);
  backdrop-filter: blur(22px) saturate(140%);
}

/* About, Clients, Contact, Index, Network, Products, Services Page - nav-inner section */
.nav-inner {
  padding-top: 13px;
  padding-bottom: 13px;
}

.brandmark .seal {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 8px 15px rgba(7, 21, 33, .12));
}

/* About, Clients, Contact, Index, Network, Products, Services Page - nav-cta section */
.nav-cta {
  box-shadow: 0 12px 28px rgba(159, 16, 32, .22);
  position: relative;
  overflow: hidden;
}

.nav-cta::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: linear-gradient(110deg, transparent 40%, rgba(255, 255, 255, .38) 50%, transparent 60%);
  transform: translateX(-70%) rotate(12deg);
  transition: transform .75s var(--ease)
}

.nav-cta:hover::after {
  transform: translateX(70%) rotate(12deg)
}

/* Homepage hero */
.hero.hero-pro {
  min-height: 100svh;
  padding: 168px 0 72px;
  background:
    radial-gradient(circle at 76% 24%, rgba(159, 16, 32, .16), transparent 24%),
    radial-gradient(circle at 25% 12%, rgba(210, 166, 90, .18), transparent 26%),
    linear-gradient(180deg, #f3ede3 0%, #f8f5ef 68%, var(--bg) 100%);
}

.hero-pro::after {
  content: "";
  position: absolute;
  right: -13vw;
  top: 10%;
  width: 56vw;
  height: 56vw;
  border: 1px solid rgba(159, 16, 32, .11);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(159, 16, 32, .03), 0 0 0 150px rgba(159, 16, 32, .018);
  pointer-events: none;
}

.hero-pro .hero-grid {
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  gap: 72px;
}

.hero-pro h1 {
  font-size: clamp(3.25rem, 6.1vw, 6.25rem);
  letter-spacing: -.055em;
  line-height: .94;
  margin: 20px 0 28px;
  max-width: 9.5ch;
}

.hero-pro h1 .accent {
  position: relative;
  display: inline-block;
}

.hero-pro h1 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 7px;
  border-radius: 100%;
  background: linear-gradient(90deg, var(--rust), var(--mustard));
  transform: scaleX(.72) rotate(-1deg);
  transform-origin: left;
  opacity: .72;
}

.hero-pro p.lead {
  font-size: 1.08rem;
  max-width: 58ch;
  line-height: 1.75;
}

/* Index, Products Page - hero-kicker section */
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  color: var(--rust);
}

.hero-kicker::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--rust);
}

/* Index Page - hero-actions section */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Index Page - hero-proof section */
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 38px;
  max-width: 610px;
}

.hero-proof .proof {
  padding: 16px 14px;
  border-top: 1px solid var(--line);
  position: relative;
}

.hero-proof .proof::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 22%;
  height: 2px;
  background: var(--rust);
  transition: width .45s var(--ease);
}

.hero-proof .proof:hover::before {
  width: 100%;
}

.hero-proof b {
  display: block;
  font-family: Poppins;
  font-size: 1.2rem;
}

.hero-proof span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  margin-top: 3px;
}

/* Index Page - hero-stage section */
.hero-stage {
  position: relative;
  min-height: 610px;
  perspective: 1200px;
  isolation: isolate;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 7% 4% 3% 8%;
  border-radius: 38px;
  background: linear-gradient(145deg, #081a29, #102d43);
  box-shadow: var(--shadow-lg);
  transform: rotate(3deg);
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 3% 9% 8% 3%;
  border: 1px solid rgba(159, 16, 32, .28);
  border-radius: 38px;
  transform: rotate(-3deg);
  z-index: -1;
}

/* Index Page - hero-main-media section */
.hero-main-media {
  position: absolute;
  inset: 10% 8% 11% 10%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
  transform-style: preserve-3d;
}

.hero-main-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 33, 0) 35%, rgba(7, 21, 33, .78));
  z-index: 1;
}

.hero-main-media::after {
  content: "";
  position: absolute;
  left: -45%;
  top: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
  transform: skewX(-18deg);
  animation: heroScan 5.8s ease-in-out infinite;
  z-index: 2;
}

@keyframes heroScan {

  0%,
  42% {
    left: -45%
  }

  68%,
  100% {
    left: 125%
  }
}

.hero-main-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.08);
  will-change: transform;
}

/* Index Page - hero-media-caption section */
.hero-media-caption {
  position: absolute;
  left: 34px;
  bottom: 30px;
  color: #fff;
  z-index: 3;
  max-width: 270px;
}

.hero-media-caption .mini {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--mustard);
  font-weight: 800;
}

.hero-media-caption b {
  display: block;
  font-family: Poppins;
  font-size: 1.45rem;
  line-height: 1.15;
  margin-top: 7px;
}

/* Index Page - stage-status section */
.stage-status {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, .92);
  border-radius: 999px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  box-shadow: var(--shadow-sm)
}

.stage-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #27b369;
  box-shadow: 0 0 0 5px rgba(39, 179, 105, .15);
  animation: statusPulse 1.8s infinite;
}

@keyframes statusPulse {
  50% {
    box-shadow: 0 0 0 9px rgba(39, 179, 105, 0)
  }
}

/* Index Page - orbit-product section */
.orbit-product {
  position: absolute;
  z-index: 5;
  background: rgba(255, 253, 249, .96);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 22px 55px rgba(7, 21, 33, .24);
  backdrop-filter: blur(16px);
  border-radius: 22px;
  padding: 12px;
  transform-style: preserve-3d;
  will-change: transform;
}

.orbit-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 20px rgba(7, 21, 33, .25));
}

.orbit-product.ball {
  width: 150px;
  height: 150px;
  left: -2%;
  top: 6%;
}

.orbit-product.kit {
  width: 176px;
  height: 176px;
  right: -3%;
  bottom: 2%;
}

.orbit-product.craft {
  width: 134px;
  height: 112px;
  right: -2%;
  top: 18%;
  padding: 0;
  overflow: hidden;
}

.orbit-product.craft img {
  object-fit: cover;
  filter: none;
}

/* Index Page - orbit-label section */
.orbit-label {
  position: absolute;
  z-index: 6;
  background: var(--rust);
  color: white;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 15px 28px rgba(159, 16, 32, .28);
}

.orbit-label.one {
  left: 5%;
  bottom: 10%;
}

.orbit-label.two {
  right: 9%;
  top: 8%;
  background: var(--mustard);
  color: var(--dark)
}

/* Index Page - capability-rail section */
.capability-rail {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, .7);
  backdrop-filter: blur(10px);
}

/* Index Page - capability-track section */
.capability-track {
  display: flex;
  width: max-content;
  animation: capRail 26s linear infinite;
}

.capability-track span {
  padding: 18px 34px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 800;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

.capability-track span::after {
  content: "✦";
  color: var(--rust);
  font-size: 14px;
}

@keyframes capRail {
  to {
    transform: translateX(-50%)
  }
}

.capability-rail:hover .capability-track {
  animation-play-state: paused;
}

/* Interactive commercial cards */
/* Index Page - experience-grid section */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-top: 54px;
}

/* Index Page - experience-card section */
.experience-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow-md);
  isolation: isolate;
  transform: translateZ(0);
}

.experience-card.large {
  grid-column: span 7
}

.experience-card.small {
  grid-column: span 5
}

.experience-card.third {
  grid-column: span 4;
  min-height: 360px
}

.experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 220px at var(--mx) var(--my), rgba(255, 255, 255, .19), transparent 62%);
  z-index: 3;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none
}

.experience-card:hover::before {
  opacity: 1
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 33, .06), rgba(7, 21, 33, .86));
  z-index: 1;
}

.experience-card>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter .8s var(--ease);
}

.experience-card:hover>img {
  transform: scale(1.08);
  filter: saturate(1.12)
}

.experience-card .content {
  position: absolute;
  inset: auto 0 0;
  padding: 34px;
  z-index: 4;
}

.experience-card .index {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--mustard);
  font-weight: 800;
}

.experience-card h3 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  max-width: 15ch;
  margin: 8px 0 12px;
  color: #fff;
}

.experience-card p {
  color: rgba(255, 255, 255, .72);
  max-width: 48ch;
  font-size: .92rem;
}

/* Index Page - card-arrow section */
.card-arrow {
  position: absolute;
  right: 26px;
  top: 26px;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .35s, transform .35s, border-color .35s;
}

.card-arrow svg {
  width: 19px;
  height: 19px;
  stroke: #fff;
  fill: none;
  transition: transform .35s;
}

.experience-card:hover .card-arrow {
  background: #fff;
  border-color: #fff;
  transform: rotate(-8deg)
}

.experience-card:hover .card-arrow svg {
  stroke: var(--dark);
  transform: translate(2px, -2px)
}

/* Index Page - product-cutouts section */
.product-cutouts {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  background: radial-gradient(circle at center, #223b4d, #071521 70%)
}

.product-cutouts img {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 28px 26px rgba(0, 0, 0, .32));
  transition: transform .7s var(--ease)
}

.product-cutouts .ball-cut {
  width: 46%;
  left: 8%;
  top: 8%
}

.product-cutouts .kit-cut {
  width: 47%;
  right: 4%;
  bottom: 4%
}

.experience-card:hover .ball-cut {
  transform: translate(-8px, -10px) rotate(-6deg)
}

.experience-card:hover .kit-cut {
  transform: translate(8px, -8px) rotate(4deg)
}

/* Product switcher */
/* Index Page - showcase-shell section */
.showcase-shell {
  margin-top: 56px;
  background: linear-gradient(145deg, #071521, #0d2a40);
  border-radius: 34px;
  min-height: 590px;
  display: grid;
  grid-template-columns: 340px 1fr;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

/* Index Page - showcase-nav section */
.showcase-nav {
  padding: 42px 26px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
  position: relative;
  z-index: 3;
}

.showcase-nav button {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .55);
  text-align: left;
  padding: 18px 18px;
  border-radius: 16px;
  font-family: Inter;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .35s var(--ease);
}

.showcase-nav button span {
  font-size: 11px;
  color: var(--mustard);
  opacity: .7
}

.showcase-nav button.active,
.showcase-nav button:hover {
  background: rgba(255, 255, 255, .09);
  color: #fff;
  transform: translateX(4px)
}

/* Index Page - showcase-canvas section */
.showcase-canvas {
  position: relative;
  min-height: 590px;
  overflow: hidden;
}

/* Index Page - showcase-panel section */
.showcase-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(.98);
  transition: opacity .55s var(--ease), transform .55s var(--ease), visibility .55s;
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  padding: 54px;
}

.showcase-panel.active {
  opacity: 1;
  visibility: visible;
  transform: none;
}

/* Index Page - showcase-visual section */
.showcase-visual {
  height: 430px;
  display: grid;
  place-items: center;
  position: relative;
}

.showcase-visual::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 16, 32, .4), rgba(159, 16, 32, 0) 68%);
  filter: blur(2px)
}

.showcase-visual img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  position: relative;
  filter: drop-shadow(0 36px 28px rgba(0, 0, 0, .35));
  transition: transform .6s var(--ease)
}

.showcase-panel.active .showcase-visual img {
  animation: showFloat 4.8s ease-in-out infinite
}

@keyframes showFloat {
  50% {
    transform: translateY(-12px) rotate(1.5deg)
  }
}

/* Index Page - showcase-copy section */
.showcase-copy {
  color: #fff;
  position: relative;
  z-index: 2
}

.showcase-copy .meta {
  font-size: 11px;
  color: var(--mustard);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em
}

.showcase-copy h3 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  margin: 12px 0 16px;
  color: #fff
}

.showcase-copy p {
  color: rgba(255, 255, 255, .68);
  max-width: 43ch
}

/* Index Page - showcase-tags section */
.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px
}

.showcase-tags span {
  padding: 9px 16px;
  border: 1px solid var(--rust);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: var(--rust);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

/* Product page visual cards */
/* Products Page - product-hero-grid section */
.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Products Page - product-hero-art section */
.product-hero-art {
  min-height: 460px;
  position: relative;
  display: grid;
  place-items: center;
}

.product-hero-art::before {
  content: "";
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 16, 32, .24), rgba(159, 16, 32, 0) 68%);
}

.product-hero-art .football {
  position: absolute;
  width: 48%;
  left: 5%;
  top: 2%;
  filter: drop-shadow(0 26px 25px rgba(7, 21, 33, .24));
  animation: floatA 4.5s ease-in-out infinite
}

.product-hero-art .kit {
  position: absolute;
  width: 50%;
  right: 0;
  bottom: 0;
  filter: drop-shadow(0 26px 25px rgba(7, 21, 33, .24));
  animation: floatB 5.2s ease-in-out infinite
}

@keyframes floatA {
  50% {
    transform: translateY(-12px) rotate(-3deg)
  }
}

@keyframes floatB {
  50% {
    transform: translateY(10px) rotate(2deg)
  }
}

/* Products Page - product-card-pro section */
.product-card-pro {
  --mx: 50%;
  --my: 50%;
  position: relative;
  background: var(--card);
  border: 1px solid rgba(7, 21, 33, .08);
  border-radius: 26px;
  padding: 22px;
  overflow: hidden;
  min-height: 480px;
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.product-card-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 180px at var(--mx) var(--my), rgba(159, 16, 32, .11), transparent 66%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

.product-card-pro:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-md)
}

.product-card-pro:hover::before {
  opacity: 1
}

.product-card-pro .visual {
  height: 255px;
  border-radius: 20px;
  background: linear-gradient(145deg, #eff1f2, #fff);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative
}

.product-card-pro .visual.dark {
  background: radial-gradient(circle at 50% 38%, #18384f, #071521 72%)
}

.product-card-pro .visual img {
  max-width: 82%;
  max-height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 25px 20px rgba(7, 21, 33, .23));
  transition: transform .6s var(--ease)
}

.product-card-pro:hover .visual img {
  transform: translateY(-7px) scale(1.04) rotate(1deg)
}

.product-card-pro .code {
  margin: 20px 0 12px
}

.product-card-pro h3 {
  font-size: 1.45rem
}

.product-card-pro p {
  color: var(--ink-soft);
  font-size: .94rem;
  margin-top: 9px
}

.product-card-pro .spec {
  margin-top: 18px !important
}

/* Products Page - product-duo section */
.product-duo {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  margin-top: 44px
}

/* Products Page - product-visual-block section */
.product-visual-block {
  min-height: 430px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: var(--dark);
  box-shadow: var(--shadow-md)
}

.product-visual-block img.cover {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.product-visual-block .floating-cut {
  position: absolute;
  inset: 10%;
  object-fit: contain;
  width: 80%;
  height: 80%;
  filter: drop-shadow(0 35px 30px rgba(0, 0, 0, .35))
}

/* Logo walls sourced from company profile */
/* Clients, Network Page - logo-wall section */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 44px;
}

/* Clients, Network Page - logo-card section */
.logo-card {
  --mx: 50%;
  --my: 50%;
  min-height: 126px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(7, 21, 33, .055);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}

.logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 120px at var(--mx) var(--my), rgba(159, 16, 32, .09), transparent 70%);
  opacity: 0;
  transition: opacity .3s
}

.logo-card:hover::before {
  opacity: 1
}

.logo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(159, 16, 32, .23)
}

.logo-card img {
  max-width: 92%;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(.15);
  transition: filter .35s, transform .35s
}

.logo-card:hover img {
  filter: none;
  transform: scale(1.04)
}

/* Network Page - carrier-wall section */
.carrier-wall {
  grid-template-columns: repeat(3, 1fr)
}

.carrier-wall .logo-card {
  min-height: 150px
}

/* Section and CTA refinements */
/* About, Clients, Contact, Index, Network, Products, Services Page - panel section */
.panel {
  overflow: hidden;
}

.panel.alt {
  background: linear-gradient(180deg, #eee7dc, #f4efe7)
}

.panel.dark {
  background:
    radial-gradient(circle at 82% 10%, rgba(159, 16, 32, .22), transparent 28%),
    radial-gradient(circle at 12% 100%, rgba(210, 166, 90, .11), transparent 26%),
    var(--dark);
}

/* About, Clients, Index, Network, Products, Services Page - cta-banner section */
.cta-banner {
  background: linear-gradient(135deg, #ece4d7, #f9f6f0);
  color: var(--ink);
  padding: 42px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-banner .wrap {
  background: linear-gradient(125deg, #0a1b29, #102f45);
  border-radius: 30px;
  padding: 42px 48px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner .wrap::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -150px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  border: 1px solid rgba(210, 166, 90, .32);
  box-shadow: 0 0 0 60px rgba(210, 166, 90, .04), 0 0 0 120px rgba(159, 16, 32, .04)
}

.cta-banner h2 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  max-width: 24ch;
  color: #fff;
  position: relative;
  z-index: 2
}

.cta-banner .btn {
  position: relative;
  z-index: 2;
  color: #fff;
  border-color: rgba(255, 255, 255, .45)
}

/* Premium footer */
footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(159, 16, 32, .18), transparent 28%),
    radial-gradient(circle at 88% 92%, rgba(210, 166, 90, .09), transparent 24%),
    #050f18;
  color: #f9f4eb;
  padding: 84px 0 26px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "MOHSIM";
  position: absolute;
  right: -2vw;
  bottom: -8vw;
  font-family: Poppins;
  font-weight: 800;
  font-size: 18vw;
  line-height: 1;
  color: rgba(255, 255, 255, .018);
  letter-spacing: -.07em;
  pointer-events: none
}

/* About, Clients, Contact, Index, Network, Products, Services Page - footer-topline section */
.footer-topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  padding-bottom: 34px;
  margin-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, .11)
}

.footer-topline h3 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  max-width: 14ch;
  letter-spacing: -.045em;
  color: #fff
}

.footer-topline p {
  max-width: 42ch;
  color: rgba(255, 255, 255, .58)
}




/* About, Clients, Contact, Index, Network, Products, Services Page - footer-grid section */
.footer-grid {
  grid-template-columns: 1.35fr .8fr 1.05fr 1fr;
  gap: 38px;
  padding-bottom: 42px;
  position: relative;
  z-index: 2
}

/* About, Clients, Contact, Index, Network, Products, Services Page - footer-logo section */
.footer-logo {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: #fff;
  padding: 11px
}

.footer-brand .word {
  font-size: 1.3rem
}

.footer-brand .word span {
  color: var(--rust)
}

.footer-col h4 {
  color: var(--rust);
  letter-spacing: .11em
}

.footer-col a,
.footer-col p {
  color: rgba(255, 255, 255, .66);
  line-height: 1.8
}

.footer-col a {
  width: max-content;
  max-width: 100%
}

/* About, Clients, Contact, Index, Network, Products, Services Page - footer-actions section */
.footer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px
}

/* About, Clients, Contact, Index, Network, Products, Services Page - footer-pill section */
.footer-pill {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  font-size: 11px !important;
  color: rgba(255, 255, 255, .75) !important;
  transition: .3s !important
}

.footer-pill:hover {
  background: rgba(255, 255, 255, .08);
  border-color: var(--rust);
  color: #fff !important
}

/* About, Clients, Contact, Index, Network, Products, Services Page - footer-bottom section */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 20px;
  position: relative;
  z-index: 2
}

/* About, Clients, Contact, Index, Network, Products, Services Page - footer-status section */
.footer-status {
  display: flex;
  align-items: center;
  gap: 8px
}

.footer-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #31c777;
  box-shadow: 0 0 0 5px rgba(49, 199, 119, .1)
}

/* Motion affordances */
[data-float] {
  will-change: transform
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(159, 16, 32, .075), transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .3s;
  mix-blend-mode: multiply
}

.cursor-glow.visible {
  opacity: 1
}

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(24px)
}

@media (max-width:1100px) {
  .hero-pro .hero-grid {
    grid-template-columns: 1fr;
  }

/* Index Page - hero-stage section */
  .hero-stage {
    min-height: 560px;
    max-width: 760px;
    width: 100%;
    margin: 12px auto 0
  }

  .hero-pro h1 {
    max-width: 12ch
  }

/* Index Page - showcase-shell section */
  .showcase-shell {
    grid-template-columns: 270px 1fr
  }

/* Index Page - showcase-panel section */
  .showcase-panel {
    padding: 38px
  }

/* Clients, Network Page - logo-wall section */
  .logo-wall {
    grid-template-columns: repeat(4, 1fr)
  }
}

@media (max-width:820px) {
  .hero.hero-pro {
    padding-top: 130px
  }

/* Index Page - hero-proof section */
  .hero-proof {
    grid-template-columns: 1fr
  }

  .hero-proof .proof {
    padding: 12px 0
  }

/* Index Page - hero-stage section */
  .hero-stage {
    min-height: 480px
  }

  .orbit-product.ball {
    width: 112px;
    height: 112px
  }

  .orbit-product.kit {
    width: 132px;
    height: 132px
  }

  .orbit-product.craft {
    width: 105px;
    height: 92px
  }

  .experience-card.large,
  .experience-card.small,
  .experience-card.third {
    grid-column: 1/-1;
    min-height: 390px
  }

/* Index Page - showcase-shell section */
  .showcase-shell {
    grid-template-columns: 1fr
  }

/* Index Page - showcase-nav section */
  .showcase-nav {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 18px
  }

  .showcase-nav button {
    padding: 12px;
    font-size: 12px
  }

/* Index Page - showcase-canvas section */
  .showcase-canvas {
    min-height: 620px
  }

/* Index Page - showcase-panel section */
  .showcase-panel {
    grid-template-columns: 1fr;
    padding: 28px
  }

/* Index Page - showcase-visual section */
  .showcase-visual {
    height: 250px
  }

/* Products Page - product-hero-grid section */
  .product-hero-grid,
/* Products Page - product-duo section */
  .product-duo {
    grid-template-columns: 1fr
  }

/* Products Page - product-hero-art section */
  .product-hero-art {
    min-height: 380px
  }

/* Clients, Network Page - logo-wall section */
  .logo-wall {
    grid-template-columns: repeat(3, 1fr)
  }

/* Network Page - carrier-wall section */
  .carrier-wall {
    grid-template-columns: repeat(2, 1fr)
  }

/* About, Clients, Contact, Index, Network, Products, Services Page - footer-topline section */
  .footer-topline {
    align-items: flex-start;
    flex-direction: column
  }
}

  

@media (max-width:560px) {
  .hero.hero-pro {
    padding: 105px 0 48px
  }

  .hero-pro h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

/* Index Page - hero-stage section */
  .hero-stage {
    min-height: 390px
  }

/* Index Page - hero-main-media section */
  .hero-main-media {
    inset: 11% 4% 11% 7%
  }

/* Index Page - hero-media-caption section */
  .hero-media-caption {
    left: 20px;
    bottom: 18px
  }

  .hero-media-caption b {
    font-size: 1.12rem
  }

  .orbit-product.ball {
    left: 0;
    top: 4%;
    width: 90px;
    height: 90px
  }

  .orbit-product.kit {
    right: -1%;
    width: 108px;
    height: 108px
  }

  .orbit-product.craft {
    display: none
  }

/* Index Page - orbit-label section */
  .orbit-label {
    display: none
  }

/* Index Page - experience-card section */
  .experience-card {
    min-height: 360px
  }

  .experience-card .content {
    padding: 24px
  }

/* Index Page - showcase-shell section */
  .showcase-shell {
    border-radius: 24px
  }

/* Index Page - showcase-nav section */
  .showcase-nav {
    grid-template-columns: 1fr 1fr
  }

  .showcase-nav button {
    font-size: 11px
  }

/* Index Page - showcase-canvas section */
 .showcase-canvas {
  min-height: auto;
  height: auto;
}

.showcase-panel {
  position: relative;
  inset: auto;
  display: none;
  grid-template-columns: 1fr;
  padding: 22px;
}

.showcase-panel.active {
  display: grid;
}

  .showcase-copy h3 {
    font-size: 2rem
  }

/* Clients, Network Page - logo-wall section */
  .logo-wall,
/* Network Page - carrier-wall section */
  .carrier-wall {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
  }

/* Clients, Network Page - logo-card section */
  .logo-card {
    min-height: 104px;
    padding: 14px
  }

/* About, Clients, Contact, Index, Network, Products, Services Page - footer-grid section */
  .footer-grid {
    grid-template-columns: 1fr
  }

  .cta-banner .wrap {
    padding: 34px 24px;
    border-radius: 22px
  }

  .footer-topline h3 {
    font-size: 2.1rem
  }
}

@media (prefers-reduced-motion:reduce) {

  .hero-main-media::after,
  .product-hero-art img,
  .showcase-panel.active .showcase-visual img,
/* Index Page - capability-track section */
  .capability-track {
    animation: none !important
  }

/* Index Page - orbit-product section */
  .orbit-product {
    transform: none !important
  }
}

/* Compact brand lockup refinement */
.brandmark .seal {
  width: 56px;
  height: 38px;
}

.brandmark .seal img {
  object-fit: contain;
}

.brandmark .word {
  white-space: nowrap;
}

@media (max-width:560px) {
/* About, Clients, Contact, Index, Network, Products, Services Page - nav-inner section */
  .nav-inner {
    padding: 12px 20px;
    gap: 12px;
  }

/* About, Clients, Contact, Index, Network, Products, Services Page - brandmark section */
  .brandmark {
    gap: 7px;
    min-width: 0;
  }

  .brandmark .seal {
    width: 46px;
    height: 30px;
  }

  .brandmark .word {
    font-size: 14px;
    letter-spacing: -.02em;
  }

/* About, Clients, Contact, Index, Network, Products, Services Page - nav-cta section */
  .nav-cta {
    display: none;
  }

/* About, Clients, Contact, Index, Network, Products, Services Page - burger section */
  .burger {
    flex: 0 0 30px;
  }
}

.product-card-pro .code {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  font-weight: 800;
  color: var(--rust);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.product-card-pro ul.spec {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-soft);
}

.product-card-pro ul.spec li {
  background: var(--bg-2);
  border-radius: 999px;
  padding: 7px 11px;
}

/* ===================================================================
   Requested production refinements — 2026-07
   =================================================================== */
.enhanced-hero {
  background:
    radial-gradient(circle at 84% 14%, rgba(138, 18, 32, .16), transparent 30%),
    linear-gradient(180deg, #f4ecdf 0%, var(--bg) 100%);
  padding: 158px 0 84px;
}

.enhanced-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .82fr);
  gap: 58px;
  align-items: center;
}

.enhanced-hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(2.4rem, 5vw, 4.65rem);
  letter-spacing: -.045em;
}

.enhanced-hero-copy p {
  max-width: 58ch;
}

.hero-metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-metric-row span {
  min-width: 132px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-sm);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.hero-metric-row b {
  display: block;
  color: var(--rust);
  font-family: Poppins, sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 6px;
}

.enhanced-hero-visual {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 450px;
  border-radius: 34px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(26,35,45,.08);
  box-shadow: var(--shadow-lg);
}

.enhanced-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle 220px at var(--mx) var(--my), rgba(255,255,255,.22), transparent 65%),
    linear-gradient(180deg, rgba(10,26,41,0), rgba(10,26,41,.62));
  pointer-events: none;
}

.enhanced-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-float-card {
  position: absolute;
  z-index: 3;
  left: 24px;
  right: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.hero-float-card.top { top: 24px; right: auto; min-width: 240px; }
.hero-float-card.bottom { bottom: 24px; left: auto; min-width: 265px; }
.hero-float-card b { display:block; font-family:Poppins, sans-serif; color:var(--ink); line-height:1.15; }
.hero-float-card span { display:block; color:var(--ink-soft); font-size:12px; margin-top:4px; font-weight:700; }

.manufacturing-snapshot {
  background:
    radial-gradient(circle at 6% 8%, rgba(198,150,65,.12), transparent 26%),
    linear-gradient(180deg, #f3ecdf, #f8f3eb);
}

.manufacturing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: 24px;
  margin-top: 46px;
  align-items: stretch;
}

.manufacturing-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mini-product-card,
.manufacturing-video-card,
.catalog-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  background: var(--card);
  border: 1px solid rgba(26,35,45,.09);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.mini-product-card::before,
.manufacturing-video-card::before,
.catalog-card::before,
.sea-logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 170px at var(--mx) var(--my), rgba(138,18,32,.10), transparent 70%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
  z-index: 2;
}

.mini-product-card:hover::before,
.manufacturing-video-card:hover::before,
.catalog-card:hover::before,
.sea-logo-card:hover::before { opacity: 1; }

.mini-product-card {
  border-radius: 24px;
  padding: 16px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.mini-product-card:hover,
.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.mini-product-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 18px;
  background: #f5f5f5;
}

.mini-product-card span,
.video-caption span,
.catalog-copy span,
.category-pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin-top: 16px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 800;
  color: var(--rust);
}

.mini-product-card h3 {
  font-size: 1.12rem;
  margin-top: 8px;
}

.mini-product-card p,
.video-caption p,
.catalog-copy p {
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.55;
  margin-top: 8px;
}

.manufacturing-video-card {
  border-radius: 30px;
  padding: 16px;
}

.video-frame {
  border-radius: 22px;
  overflow: hidden;
  background: var(--dark);
  aspect-ratio: 16 / 11;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-caption { padding: 16px 4px 4px; }
.video-caption h3 { font-size: 1.45rem; margin-top: 7px; }

.product-hero-clean h1 { max-width: 12ch; }
.product-collage { min-height: 500px; }
.product-collage::before { width: 82%; }
.product-collage-main,
.product-collage-small {
  position: absolute;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  border: 10px solid rgba(255,255,255,.86);
}
.product-collage-main { width: 58%; aspect-ratio: 1; left: 18%; top: 10%; z-index: 2; }
.product-collage-small.one { width: 36%; aspect-ratio: 4/5; left: 0; bottom: 5%; z-index: 3; }
.product-collage-small.two { width: 34%; aspect-ratio: 1; right: 2%; bottom: 10%; z-index: 4; }

.product-category-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-end;
  margin-bottom: 38px;
}

.product-category-head .section-lead { max-width: 78ch; }
.category-pill {
  flex: 0 0 auto;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  color: var(--sage);
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-gallery-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.catalog-card {
  border-radius: 28px;
  padding: 16px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.catalog-image {
  height: 270px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #f0f1f2, #fff);
}

.catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}

.catalog-image.svg-fit img,
.catalog-card img[src$=".svg"],
.catalog-card img[src$="football-kit.png"] {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.catalog-card:hover .catalog-image img { transform: scale(1.04); }
.catalog-copy { padding: 0 2px 4px; }
.catalog-copy h3 { font-size: 1.34rem; margin-top: 8px; }

.product-shot-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.product-shot-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.sea-carrier-wall {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.sea-carrier-wall .sea-logo-card {
  min-height: 168px;
  padding: 32px;
  border-radius: 26px;
}

.sea-carrier-wall .sea-logo-card img {
  width: 240px;
  height: 84px;
  max-width: 88%;
  max-height: 84px;
  object-fit: contain;
  filter: none;
}

.logo-wall.carrier-wall:not(.sea-carrier-wall) .logo-card img {
  width: 230px;
  height: 76px;
  object-fit: contain;
}

@media (max-width:1100px) {
  .enhanced-hero-grid,
  .manufacturing-grid { grid-template-columns: 1fr; }
  .enhanced-hero-visual { min-height: 390px; }
  .product-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width:820px) {
  .enhanced-hero { padding-top: 132px; }
  .product-category-head { align-items: flex-start; flex-direction: column; }
  .manufacturing-cards { grid-template-columns: 1fr; }
  .product-shot-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sea-carrier-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-image { height: 235px; }
}

@media (max-width:560px) {
  .enhanced-hero-copy h1 { font-size: clamp(2.15rem, 12vw, 3.2rem); }
  .hero-metric-row span { flex: 1 1 120px; }
  .enhanced-hero-visual,
  .enhanced-hero-visual img { min-height: 340px; }
  .hero-float-card { left: 16px; right: 16px; }
  .hero-float-card.top,
  .hero-float-card.bottom { min-width: 0; right: 16px; left: 16px; }
  .product-gallery-grid,
  .product-gallery-grid.three,
  .sea-carrier-wall { grid-template-columns: 1fr; }
  .product-shot-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-image { height: 250px; }
}

/* ================================================================
   FINAL LOCAL/OFFLINE PATCH — no external CDN dependency
   ================================================================ */
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
h1, h2, h3, h4, .brandmark .word, footer::before {
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

/* Content remains visible if JavaScript is unavailable. Native JS adds .is-visible for motion. */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-rotate,
.reveal-stagger > * {
  opacity: 1;
  transform: none;
}
.reveal-clip .clip { clip-path: none; }
html.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal-left { opacity: 0; transform: translateX(-34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal-right { opacity: 0; transform: translateX(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal-scale { opacity: 0; transform: scale(.94); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal-rotate { opacity: 0; transform: translateY(24px) rotate(-3deg); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal.is-visible,
html.js .reveal-left.is-visible,
html.js .reveal-right.is-visible,
html.js .reveal-scale.is-visible,
html.js .reveal-rotate.is-visible { opacity: 1; transform: none; }
html.js .reveal-clip .clip { clip-path: inset(0 0 100% 0); transition: clip-path .9s var(--ease-soft); }
html.js .reveal-clip.is-visible .clip { clip-path: inset(0 0 0 0); }
html.js .reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .62s var(--ease), transform .62s var(--ease); }
html.js .reveal-stagger.is-visible > * { opacity: 1; transform: none; }
html.js .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .07s; }
html.js .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .14s; }
html.js .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .21s; }
html.js .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .28s; }
html.js .reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .35s; }
html.js .reveal-stagger.is-visible > *:nth-child(7) { transition-delay: .42s; }
html.js .reveal-stagger.is-visible > *:nth-child(8) { transition-delay: .49s; }
html.js .reveal-stagger.is-visible > *:nth-child(9) { transition-delay: .56s; }
html.js .reveal-stagger.is-visible > *:nth-child(10) { transition-delay: .63s; }

/* Network logo sizing — every sea carrier uses the same visual box. */
.logo-wall.carrier-wall {
  align-items: stretch;
}
.logo-wall.carrier-wall .logo-card,
.sea-carrier-wall .sea-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 168px;
  height: 168px;
  padding: 30px;
}
.logo-wall.carrier-wall .logo-card img,
.sea-carrier-wall .sea-logo-card img {
  width: 240px;
  height: 86px;
  max-width: 88%;
  max-height: 86px;
  object-fit: contain;
}

/* Product catalogue — professional cards, fixed image sizing, micro interactions. */
.product-system-hero {
  background:
    radial-gradient(circle at 86% 15%, rgba(138,18,32,.10), transparent 28%),
    radial-gradient(circle at 10% 95%, rgba(198,150,65,.13), transparent 30%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}
.product-hero-copy h1 { max-width: 13ch; }
.product-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.product-metric-row { margin-top: 28px; }
.refined-collage {
  min-height: 520px;
  position: relative;
  isolation: isolate;
}
.refined-collage::before {
  content: "";
  position: absolute;
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138,18,32,.16), rgba(198,150,65,.10) 42%, transparent 70%);
  left: 10%;
  top: 8%;
  z-index: -1;
}
.collage-img {
  position: absolute;
  display: block;
  object-fit: cover;
  background: #fff;
  border: 10px solid rgba(255,255,255,.88);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(10,26,41,.18);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.refined-collage:hover .collage-img { box-shadow: 0 34px 88px rgba(10,26,41,.24); }
.collage-img.main { width: 56%; aspect-ratio: 1; left: 17%; top: 7%; z-index: 2; }
.collage-img.apparel { width: 34%; aspect-ratio: 4/5; left: 0; bottom: 9%; z-index: 3; }
.collage-img.denim { width: 30%; aspect-ratio: 3/4; right: 5%; top: 1%; z-index: 4; }
.collage-img.salt { width: 34%; aspect-ratio: 1; right: 0; bottom: 10%; z-index: 5; object-fit: contain; }
.refined-collage:hover .collage-img.main { transform: translateY(-8px) rotate(-1deg); }
.refined-collage:hover .collage-img.apparel { transform: translate(-6px, 6px) rotate(2deg); }
.refined-collage:hover .collage-img.denim { transform: translate(4px, -6px) rotate(2deg); }
.refined-collage:hover .collage-img.salt { transform: translate(7px, 8px) rotate(-2deg); }
.collage-label {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 25px;
  z-index: 7;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.56);
  border-radius: 20px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}
.collage-label b { font-family: Poppins, sans-serif; line-height: 1.1; }
.collage-label span { color: var(--ink-soft); font-size: 12px; font-weight: 700; }

.product-catalogue-panel {
  background:
    radial-gradient(circle at 0% 0%, rgba(198,150,65,.10), transparent 25%),
    var(--bg);
}
.catalogue-filter {
  position: sticky;
  top: 92px;
  z-index: 15;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px;
  margin: 4px 0 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(250,246,238,.78);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}
.catalogue-filter button {
  appearance: none;
  border: 1px solid rgba(26,35,45,.10);
  background: #fff;
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.catalogue-filter button:hover,
.catalogue-filter button.active {
  background: var(--rust);
  border-color: var(--rust);
  color: #fff;
  transform: translateY(-1px);
}
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.catalogue-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  overflow: hidden;
  min-height: 448px;
  padding: 16px;
  border: 1px solid rgba(26,35,45,.10);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: opacity .3s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.catalogue-card::before,
.process-tile::before,
.salt-showcase article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 190px at var(--mx) var(--my), rgba(138,18,32,.10), transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
  z-index: 2;
}
.catalogue-card:hover,
.process-tile:hover,
.salt-showcase article:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}
.catalogue-card:hover::before,
.process-tile:hover::before,
.salt-showcase article:hover::before { opacity: 1; }
.catalogue-card.is-hidden {
  display: none;
}
.catalogue-media {
  height: 250px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #eef0f2, #fff);
}
.catalogue-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.catalogue-media.product-object img,
.product-object-card .catalogue-media img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 24px 20px rgba(10,26,41,.18));
}
.catalogue-card:hover .catalogue-media img { transform: scale(1.045); }
.catalogue-copy { padding: 0 2px 4px; }
.catalogue-copy span,
.salt-showcase article span {
  display: inline-flex;
  margin-top: 18px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 800;
  color: var(--rust);
}
.catalogue-copy h3,
.salt-showcase article h3 { font-size: 1.35rem; margin-top: 8px; }
.catalogue-copy p,
.salt-showcase article p { color: var(--ink-soft); font-size: .92rem; line-height: 1.55; margin-top: 8px; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}
.process-tile {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 230px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(26,35,45,.10);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.process-tile b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rust);
  color: #fff;
  font-size: 12px;
}
.process-tile h3 { font-size: 1.23rem; margin-top: 18px; }
.process-tile p { color: var(--ink-soft); margin-top: 10px; font-size: .94rem; }
.refined-strip { margin-top: 22px; }
.refined-strip img {
  aspect-ratio: 1;
  object-fit: contain;
  padding: 12px;
  background: #fff;
}

.product-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 54px;
}
.product-feature-grid.reverse { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); }
.feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.feature-badges span {
  padding: 9px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
}
.feature-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.feature-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.feature-gallery img:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-md);
}
.salt-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}
.salt-showcase article {
  --mx: 50%;
  --my: 50%;
  position: relative;
  overflow: hidden;
  padding: 18px 18px 22px;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.salt-showcase article img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  border-radius: 22px;
  background: linear-gradient(145deg, #f0f1f2, #fff);
  transition: transform .55s var(--ease);
}
.salt-showcase article:hover img { transform: scale(1.04) rotate(1deg); }

@media (max-width: 1100px) {
  .catalogue-grid,
  .process-grid,
  .salt-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-feature-grid,
  .product-feature-grid.reverse { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .refined-collage { min-height: 430px; }
  .catalogue-filter { position: static; border-radius: 24px; }
  .catalogue-grid,
  .process-grid,
  .salt-showcase { grid-template-columns: 1fr; }
  .catalogue-card { min-height: auto; }
}
@media (max-width: 560px) {
  .product-hero-copy h1 { max-width: 100%; }
  .refined-collage { min-height: 370px; }
  .collage-img.main { width: 62%; left: 10%; }
  .collage-img.denim { width: 34%; right: 0; }
  .collage-label { flex-direction: column; align-items: flex-start; gap: 4px; left: 16px; right: 16px; }
  .catalogue-media { height: 220px; }
  .feature-gallery { grid-template-columns: 1fr 1fr; }
  .salt-showcase article img { height: 220px; }
}
@keyframes localHubPulse {
  0% { transform: scale(1); opacity: .9; }
  100% { transform: scale(2.6); opacity: 0; }
}
.hub-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: localHubPulse 1.6s ease-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hub-pulse { animation: none; }
}

/* ===================================================================
   Final QA patch — tighter spacing, clean image fitting, product motion
   =================================================================== */
body {
  font-family: Arial, Helvetica, sans-serif;
}
h1, h2, h3, h4 {
  font-family: Arial, Helvetica, sans-serif;
}
.hero {
  padding: 128px 0 44px;
}
.page-hero {
  padding: 136px 0 46px;
}
.panel {
  padding: 68px 0;
}
.panel.tight {
  padding: 56px 0;
}
.manufacturing-snapshot.panel {
  padding: 62px 0 56px;
}
.manufacturing-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr);
  gap: 20px;
  margin-top: 30px;
}
.manufacturing-cards {
  gap: 16px;
  align-items: start;
}
.mini-product-card {
  padding: 14px;
  border-radius: 22px;
}
.mini-product-card img {
  height: 176px;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  border-radius: 17px;
  background: #fff;
}
.mini-product-card span,
.video-caption span,
.catalog-copy span,
.salt-showcase article span {
  margin-top: 13px;
}
.mini-product-card h3 {
  font-size: 1.04rem;
  margin-top: 6px;
}
.mini-product-card p,
.video-caption p,
.catalog-copy p {
  font-size: .9rem;
  line-height: 1.5;
  margin-top: 6px;
}
.video-frame {
  aspect-ratio: 16 / 9.6;
}
.video-caption {
  padding: 14px 4px 2px;
}
.video-caption h3 {
  font-size: 1.32rem;
  margin-top: 6px;
}
.product-system-hero .product-hero-grid {
  gap: 46px;
  align-items: center;
}
.product-system-hero .refined-collage {
  min-height: 470px;
  perspective: 1200px;
  transform-style: preserve-3d;
  transform: rotateX(var(--hero-rx, 0deg)) rotateY(var(--hero-ry, 0deg));
  transition: transform .22s var(--ease);
  will-change: transform;
}
.product-system-hero .collage-img {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
}
.product-system-hero .collage-img.main {
  animation: productFloatMain 6.4s ease-in-out infinite;
}
.product-system-hero .collage-img.apparel {
  animation: productFloatApparel 7s ease-in-out .25s infinite;
}
.product-system-hero .collage-img.denim {
  animation: productFloatDenim 6.8s ease-in-out .5s infinite;
}
.product-system-hero .collage-img.salt {
  animation: productFloatSalt 7.2s ease-in-out .1s infinite;
}
@keyframes productFloatMain {
  0%, 100% { transform: translate3d(0, 0, 34px) rotateX(0deg) rotateY(0deg); }
  50% { transform: translate3d(0, -12px, 54px) rotateX(2deg) rotateY(-3deg); }
}
@keyframes productFloatApparel {
  0%, 100% { transform: translate3d(0, 0, 56px) rotateZ(-1deg); }
  50% { transform: translate3d(-8px, 10px, 72px) rotateZ(2deg) rotateY(4deg); }
}
@keyframes productFloatDenim {
  0%, 100% { transform: translate3d(0, 0, 72px) rotateZ(1deg); }
  50% { transform: translate3d(8px, -10px, 90px) rotateZ(3deg) rotateX(3deg); }
}
@keyframes productFloatSalt {
  0%, 100% { transform: translate3d(0, 0, 88px) rotateZ(0deg); }
  50% { transform: translate3d(10px, 9px, 112px) rotateZ(-3deg) rotateY(-4deg); }
}
.product-catalogue-panel.panel,
.product-process-panel.panel {
  padding: 66px 0;
}
.product-category-head {
  margin-bottom: 26px;
}
.catalogue-filter {
  margin: 0 0 22px;
  top: 88px;
}
.catalogue-grid {
  gap: 18px;
}
.catalogue-card {
  min-height: 420px;
}
.catalogue-media {
  height: 230px;
  background: #fff;
}
.catalogue-media img {
  object-position: center;
}
.catalogue-media.product-object img,
.product-object-card .catalogue-media img {
  width: 84%;
  height: 84%;
  object-fit: contain;
  padding: 0;
}
.process-grid {
  margin-top: 24px;
}
.product-shot-strip {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.product-shot-strip img,
.refined-strip img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.product-shot-strip img:hover,
.refined-strip img:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: var(--shadow-md);
}
.feature-gallery img {
  object-fit: contain;
}
@media (max-width: 1100px) {
  .manufacturing-grid,
  .product-system-hero .product-hero-grid {
    grid-template-columns: 1fr;
  }
  .product-system-hero .refined-collage {
    min-height: 420px;
  }
}
@media (max-width: 820px) {
  .hero,
  .page-hero {
    padding-top: 118px;
  }
  .panel,
  .product-catalogue-panel.panel,
  .product-process-panel.panel,
  .manufacturing-snapshot.panel {
    padding: 52px 0;
  }
  .manufacturing-cards {
    grid-template-columns: 1fr 1fr;
  }
  .product-shot-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .manufacturing-cards {
    grid-template-columns: 1fr;
  }
  .mini-product-card img {
    height: 190px;
  }
  .product-shot-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (prefers-reduced-motion: reduce) {
  .product-system-hero .collage-img {
    animation: none !important;
  }
  .product-system-hero .refined-collage {
    transform: none !important;
  }
}

/* ===================================================================
   Requested production fixes — responsive media, navigation speed,
   contact actions and final interaction QA
   =================================================================== */

/* Fast loader: no artificial wait for images or video. */
.preloader {
  transition: opacity .18s ease, visibility .18s ease;
}
.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Restored desktop cursor. */
.cursor-dot,
.cursor-ring {
  opacity: 0;
  will-change: left, top, width, height;
}

/* Home hero: show the complete 3:2 supplied artwork without scaling crop. */
.hero.hero-pro {
  min-height: auto;
  padding: 160px 0 76px;
}
.hero-pro .hero-grid {
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  gap: clamp(46px, 5vw, 72px);
}
.hero-pro h1 {
  font-size: clamp(3.1rem, 5.45vw, 5.55rem);
  line-height: .97;
  max-width: 10.5ch;
}
.hero-stage {
  min-height: 570px;
}
.hero-stage::before {
  inset: 10% 3% 8% 6%;
}
.hero-stage::after {
  inset: 6% 7% 11% 2%;
}
.hero-main-media {
  inset: auto;
  top: 50%;
  left: 50%;
  width: min(91%, 690px);
  aspect-ratio: 3 / 2;
  transform: translate(-50%, -48%);
}
.hero-main-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}
.orbit-product,
.orbit-label {
  translate: var(--parallax-x, 0) var(--parallax-y, 0);
  transition: translate .18s ease-out;
}

/* Professional portrait treatment for the supplied workshop film. */
.manufacturing-grid {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  align-items: stretch;
}
.manufacturing-video-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #fff 0%, #fbf7f0 100%);
  box-shadow: 0 22px 54px rgba(10, 26, 41, .13);
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 620px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 24px;
  background: #081724;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 20px 38px rgba(10,26,41,.18);
}
.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(5,20,32,.18), transparent 22%, transparent 72%, rgba(5,20,32,.32));
}
.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #081724;
}
.video-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(7,21,33,.82);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: opacity .2s ease, transform .2s ease;
}
.video-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #31c777;
  box-shadow: 0 0 0 4px rgba(49,199,119,.18);
}
.video-badge.is-hidden {
  opacity: 0;
  transform: translateY(-5px);
}
.video-caption {
  padding: 18px 6px 4px;
}
.video-caption h3 {
  font-size: 1.28rem;
  line-height: 1.25;
}

/* Product hero: add the requested top-left image card. */
.collage-img.gloves {
  width: 29%;
  aspect-ratio: 1 / 1;
  left: 1%;
  top: 1%;
  z-index: 6;
  object-fit: cover;
  object-position: center;
}
.refined-collage:hover .collage-img.gloves {
  transform: translate(-5px, -7px) rotate(-2deg);
}
.product-system-hero .collage-img.gloves {
  animation: productFloatGloves 6.9s ease-in-out .35s infinite;
}
@keyframes productFloatGloves {
  0%, 100% { transform: translate3d(0, 0, 96px) rotateZ(-1deg); }
  50% { transform: translate3d(-8px, -10px, 118px) rotateZ(-3deg) rotateY(3deg); }
}
.catalogue-card[data-product-category="sports"] .catalogue-media img[src*="handmade-goalkeeper-gloves"] {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  filter: none;
}
.catalogue-card[data-product-category="garments"] .catalogue-media img[src*="custom-product-manufacturing"] {
  object-position: center 40%;
}

/* Network region cards now use real imagery instead of abstract icons. */
.region-media {
  height: 190px;
  background: #e9e5de;
}
.region-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(7,21,33,.18));
  pointer-events: none;
}
.region-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.tilt-card:hover .region-media img {
  transform: scale(1.055);
}

/* WhatsApp and contact treatment. */
.wa-inline {
  display: inline-flex;
  margin-left: 5px;
  padding: 2px 7px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  vertical-align: 1px;
  opacity: .75;
  color: var(--rust);
}
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 305;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 17px 0 13px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  background: var(--rust);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 14px 36px rgba(10,26,41,.24);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease;
}
.whatsapp-float svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  background: #107b44;
  box-shadow: 0 18px 42px rgba(10,26,41,.3);
}

/* Back-to-top progress ring rotates; the directional arrow does not. */
.to-top {
  bottom: 91px;
}
.to-top > svg:first-child {
  transform: rotate(-90deg);
}
.to-top > svg:not(:first-child) {
  transform: none;
}

/* Reduce work below the fold without changing visual order. */
img[loading="lazy"] {
  content-visibility: auto;
}

@media (max-width: 1100px) {
  .hero-pro .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy { order: 1; }
  .hero-stage { order: 2; }
  .hero-stage {
    width: min(100%, 790px);
    min-height: 545px;
  }
  .manufacturing-grid {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 360px);
  }
  .product-hero-copy { order: 1; }
  .product-collage { order: 2; }
  .enhanced-hero-copy { order: 1; }
  .enhanced-hero-visual { order: 2; }
}

@media (max-width: 820px) {
  .hero.hero-pro {
    padding: 124px 0 56px;
  }
  .hero-pro h1 {
    font-size: clamp(2.75rem, 11vw, 4.45rem);
    max-width: 11ch;
  }
  .hero-stage {
    min-height: 475px;
    margin-top: 16px;
  }
  .hero-main-media {
    width: 88%;
  }
  .manufacturing-grid {
    grid-template-columns: 1fr;
  }
  .manufacturing-video-card {
    width: min(100%, 430px);
    margin-inline: auto;
  }
  .video-frame {
    max-height: none;
  }
  .region-media {
    height: 220px;
  }
  .catalogue-filter {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }
  .catalogue-filter::-webkit-scrollbar { display: none; }
  .catalogue-filter button { flex: 0 0 auto; }
}

@media (max-width: 560px) {
  .hero.hero-pro {
    padding: 112px 0 44px;
  }
  .hero-pro h1 {
    font-size: clamp(2.45rem, 12.7vw, 3.65rem);
    letter-spacing: -.045em;
  }
  .hero-pro p.lead {
    font-size: 1rem;
    line-height: 1.65;
  }
  .hero-stage {
    min-height: 380px;
    width: calc(100% + 4px);
  }
  .hero-main-media {
    width: 91%;
    border-radius: 22px;
  }
  .hero-media-caption {
    max-width: 205px;
  }
  .stage-status {
    right: 16px;
    top: 17px;
    padding: 7px 10px;
    font-size: 8px;
  }
  .collage-img.gloves {
    width: 32%;
    left: 0;
    top: 2%;
  }
  .collage-img.apparel {
    left: 2%;
    bottom: 8%;
  }
  .region-media {
    height: 190px;
  }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
    min-height: 50px;
    padding: 0;
    justify-content: center;
  }
  .whatsapp-float span { display: none; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .to-top {
    right: 16px;
    bottom: 78px;
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-system-hero .collage-img.gloves {
    animation: none !important;
  }
  .orbit-product,
  .orbit-label,
  .whatsapp-float {
    transition: none !important;
  }
}

/* ===================================================================
   Home hero and workshop film refinements — final visual correction
   =================================================================== */

/* Keep the supplied hero artwork completely visible. Decorative cards
   sit around the artwork instead of covering its product labels/content. */
.hero-pro .hero-stage {
  min-height: 620px;
  overflow: visible;
}
.hero-pro .hero-stage::before {
  inset: 9% 5% 9% 7%;
  border-radius: 34px;
  transform: rotate(2.2deg);
}
.hero-pro .hero-stage::after {
  inset: 5% 8% 12% 3%;
  border-radius: 34px;
  transform: rotate(-2.2deg);
}
.hero-pro .hero-main-media {
  top: 49%;
  width: min(84%, 650px);
  aspect-ratio: 3 / 2;
  transform: translate(-50%, -50%);
  border-radius: 27px;
  background: #071521;
  box-shadow: 0 30px 74px rgba(7, 21, 33, .26);
}
.hero-pro .hero-main-media::before {
  background: linear-gradient(180deg, rgba(7,21,33,.02), rgba(7,21,33,.10));
}
.hero-pro .hero-main-media img {
  object-fit: contain;
  object-position: center;
  background: #071521;
}
.hero-pro .stage-status {
  top: 8%;
  right: 5%;
  z-index: 7;
  box-shadow: 0 12px 30px rgba(7,21,33,.13);
}
.hero-stage-caption {
  position: absolute;
  left: 8%;
  bottom: 4%;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 390px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(255,253,249,.94);
  box-shadow: 0 14px 34px rgba(7,21,33,.16);
  backdrop-filter: blur(14px);
  color: var(--ink);
}
.hero-stage-caption .mini {
  flex: 0 0 auto;
  color: var(--rust);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-stage-caption b {
  overflow: hidden;
  font-family: Poppins, sans-serif;
  font-size: 11px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-pro .orbit-product {
  padding: 9px;
  border-radius: 19px;
  box-shadow: 0 18px 42px rgba(7,21,33,.20);
}
.hero-pro .orbit-product.ball {
  width: 116px;
  height: 116px;
  left: 0;
  top: 3%;
}
.hero-pro .orbit-product.craft {
  width: 108px;
  height: 88px;
  right: 0;
  top: 16%;
}
.hero-pro .orbit-product.kit {
  width: 146px;
  height: 132px;
  right: 0;
  bottom: 2%;
}
.hero-pro .orbit-label.one {
  left: 6%;
  bottom: 12%;
}
.hero-pro .orbit-label.two {
  right: 12%;
  top: 4%;
}

/* Portrait workshop footage in a compact editorial frame. The blurred
   poster fills the side space while the full portrait video remains visible. */
.manufacturing-grid {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 370px);
  align-items: stretch;
}
.manufacturing-video-card {
  align-self: stretch;
  min-height: 0;
  padding: 14px;
}
.video-frame {
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 5 / 6;
  max-height: 470px;
  border-radius: 22px;
  overflow: hidden;
  background: #091927;
  border: 1px solid rgba(7,21,33,.08);
  box-shadow: 0 18px 38px rgba(7,21,33,.18);
}
.video-frame::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -24px;
  background:
    linear-gradient(180deg, rgba(7,21,33,.22), rgba(7,21,33,.48)),
    url("../img/video/home-video-poster.jpg") center / cover no-repeat;
  filter: blur(18px) saturate(.88);
  transform: scale(1.12);
  opacity: .86;
}
.video-frame::after {
  z-index: 2;
  background: linear-gradient(180deg, rgba(4,14,23,.18), transparent 23%, transparent 70%, rgba(4,14,23,.38));
}
.video-frame video {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
  box-shadow: 0 0 34px rgba(0,0,0,.24);
}
.video-badge {
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  font-size: 9px;
}
.video-controls {
  position: absolute;
  z-index: 4;
  right: 13px;
  bottom: 13px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.video-control {
  appearance: none;
  min-width: 58px;
  height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(7,21,33,.78);
  color: #fff;
  font: 800 9px/1 Inter, Arial, sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.video-control:hover {
  background: rgba(138,18,32,.92);
  transform: translateY(-1px);
}
.video-caption {
  padding: 16px 5px 3px;
}
.video-caption span {
  margin-top: 0;
}
.video-caption h3 {
  margin-top: 6px;
  font-size: 1.16rem;
  line-height: 1.24;
}
.video-caption p {
  margin-top: 6px;
  font-size: .84rem;
  line-height: 1.48;
}

@media (max-width: 1100px) {
  .hero-pro .hero-stage {
    min-height: 590px;
  }
  .hero-pro .hero-main-media {
    width: min(84%, 650px);
  }
  .manufacturing-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 350px);
  }
}

@media (max-width: 820px) {
  .hero-pro .hero-stage {
    min-height: 500px;
  }
  .hero-pro .hero-main-media {
    width: 86%;
  }
  .hero-pro .orbit-product.ball {
    width: 98px;
    height: 98px;
  }
  .hero-pro .orbit-product.craft {
    width: 92px;
    height: 76px;
  }
  .hero-pro .orbit-product.kit {
    width: 124px;
    height: 112px;
  }
  .manufacturing-grid {
    grid-template-columns: 1fr;
  }
  .manufacturing-video-card {
    width: min(100%, 520px);
  }
  .video-frame {
    max-height: none;
    aspect-ratio: 5 / 6;
  }
}

@media (max-width: 560px) {
  .hero-pro .hero-stage {
    min-height: 390px;
    margin-top: 18px;
  }
  .hero-pro .hero-main-media {
    width: 88%;
    border-radius: 20px;
  }
  .hero-pro .stage-status {
    top: 3%;
    right: 2%;
  }
  .hero-stage-caption {
    left: 4%;
    right: 4%;
    bottom: 1%;
    max-width: none;
    padding: 8px 11px;
  }
  .hero-stage-caption b {
    font-size: 9px;
  }
  .hero-pro .orbit-product.ball {
    width: 76px;
    height: 76px;
    left: -1%;
    top: 5%;
    border-radius: 15px;
  }
  .hero-pro .orbit-product.craft {
    width: 72px;
    height: 58px;
    right: -1%;
    top: 18%;
    border-radius: 14px;
  }
  .hero-pro .orbit-product.kit {
    width: 94px;
    height: 84px;
    right: -1%;
    bottom: 4%;
    border-radius: 15px;
  }
  .hero-pro .orbit-label.one,
  .hero-pro .orbit-label.two {
    display: none;
  }
  .video-frame {
    aspect-ratio: 4 / 5;
  }
  .video-controls {
    right: 10px;
    bottom: 10px;
  }
  .video-control {
    min-width: 52px;
    height: 32px;
  }
}

/* ===================================================================
   Final home-hero responsive composition
   One authoritative block replaces the earlier incremental overrides.
   =================================================================== */
.hero.hero-pro {
  min-height: auto;
  padding: 138px 0 64px;
}

.hero-pro .hero-grid {
  grid-template-columns: minmax(0, .95fr) minmax(560px, 1.05fr);
  gap: 30px;
  align-items: start;
}

.hero-pro h1 {
  max-width: 15ch;
  line-height: .95;
}

.hero-pro .hero-stage {
  width: 100%;
  min-height: 540px;
  margin: 0;
  overflow: visible;
}

.hero-pro .hero-main-media {
  position: absolute;
  inset: auto;
  top: 50%;
  left: 50%;
  width: min(86%, 660px);
  aspect-ratio: 3 / 2;
  margin: 0;
  transform: translate(-50%, -50%);
}

.hero-pro .hero-main-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.hero-pro .orbit-product {
  display: block;
  position: absolute;
  z-index: 5;
  translate: var(--parallax-x, 0) var(--parallax-y, 0);
}

.hero-pro .orbit-product.ball {
  left: -18px;
  top: 8%;
}

.hero-pro .orbit-product.craft {
  right: -35px;
  top: 18%;
}

.hero-pro .orbit-product.kit {
  right: -30px;
  bottom: 6%;
}

.hero-pro .orbit-label.one {
  display: inline-flex;
}

.hero-pro .orbit-label.two,
.hero-stage-caption {
  display: none;
}

@media (max-width: 1100px) {
  .hero-pro .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .hero-pro .hero-copy {
    order: 1;
  }

  .hero-pro .hero-stage {
    order: 2;
    width: min(100%, 760px);
    min-height: 0;
    aspect-ratio: 4 / 3;
    margin: 8px auto 0;
  }

  .hero-pro .hero-main-media {
    width: min(84%, 620px);
  }

  .hero-pro .orbit-product.ball {
    left: -8px;
  }

  .hero-pro .orbit-product.craft {
    right: -12px;
  }

  .hero-pro .orbit-product.kit {
    right: -8px;
  }
}

@media (max-width: 820px) {
  .hero.hero-pro {
    padding: 118px 0 52px;
  }

  .hero-pro h1 {
    max-width: 11ch;
    font-size: clamp(2.75rem, 11vw, 4.45rem);
    line-height: .98;
  }

  .hero-pro .hero-stage {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: visible;
  }

  .hero-pro .hero-main-media {
    width: 84%;
    border-radius: 22px;
  }

  .hero-pro .stage-status {
    top: 4%;
    right: 3%;
    transform: none;
  }

  .hero-pro .orbit-product.ball {
    display: block;
    width: 88px;
    height: 88px;
    left: -4px;
    top: 4%;
    transform: none;
  }

  .hero-pro .orbit-product.craft {
    display: block;
    width: 82px;
    height: 68px;
    right: -4px;
    top: 20%;
    transform: none;
  }

  .hero-pro .orbit-product.kit {
    display: block;
    width: 108px;
    height: 96px;
    right: -4px;
    bottom: 2%;
    transform: none;
  }

  .hero-pro .orbit-label.one {
    left: 4%;
    bottom: 5%;
    padding: 7px 11px;
    font-size: 9px;
  }
}

@media (max-width: 560px) {
  .hero.hero-pro {
    padding: 82px 0 42px;
  }

  .hero-pro h1 {
    max-width: none;
    font-size: clamp(2.45rem, 12.7vw, 3.65rem);
    letter-spacing: -.045em;
  }

  .hero-pro p.lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-pro .hero-stage {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
    margin-top: 12px;
  }

  .hero-pro .hero-stage::before {
    inset: 7% 3% 5% 6%;
    border-radius: 24px;
  }

  .hero-pro .hero-stage::after {
    inset: 4% 6% 8% 2%;
    border-radius: 24px;
  }

  .hero-pro .hero-main-media {
    width: 86%;
    border-radius: 18px;
  }

  .hero-pro .stage-status {
    top: 1%;
    right: 0;
    padding: 7px 10px;
    font-size: 8px;
  }

  .hero-pro .orbit-product {
    padding: 6px;
    border-radius: 13px;
  }

  .hero-pro .orbit-product.ball {
    width: 62px;
    height: 62px;
    left: -3px;
    top: 3%;
  }

  .hero-pro .orbit-product.craft {
    width: 58px;
    height: 48px;
    right: -3px;
    top: 23%;
  }

  .hero-pro .orbit-product.kit {
    width: 78px;
    height: 70px;
    right: -3px;
    bottom: 1%;
  }

  .hero-pro .orbit-label.one {
    left: 3%;
    bottom: 3%;
    padding: 6px 9px;
    font-size: 8px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  /* Footer alignment retained from the previous mobile patch. */
  #site-footer .footer-topline,
  #site-footer .footer-grid,
  #site-footer .footer-bottom {
    text-align: center !important;
    justify-content: center;
  }

  #site-footer .footer-col,
  #site-footer .footer-brand,
  #site-footer .footer-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  #site-footer .footer-col h4,
  #site-footer .footer-col p,
  #site-footer .footer-col a {
    text-align: center !important;
  }
}


@media (max-width:560px) {

  #site-footer .footer-topline {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
  }

  #site-footer .footer-topline h3 {
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  #site-footer .footer-topline p {
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

}

/* Products submenu mobile fix */
.mobile-panel .sub {
    display: block;
    padding-left: 18px;
}

.mobile-panel .sub a {
    display: block;
    color: var(--rust) !important;
    font-size: 14px;
    line-height: 1.8;
    padding: 4px 0;
}

/* Desktop mega menu fix */
.mega a b {
    color: var(--rust) !important;
}

.mega a span {
    color: #777 !important;
}

/* Hero floating 3D motion */
.hero-pro .orbit-product{
    animation: heroFloat 5s ease-in-out infinite;
}


.hero-pro .orbit-product.ball{
    animation-delay:0s;
}


.hero-pro .orbit-product.craft{
    animation-delay:1.5s;
}


.hero-pro .orbit-product.kit{
    animation-delay:3s;
}



@keyframes heroFloat{

    0%,100%{
        transform:
        translate3d(0,0,0)
        rotateX(0deg)
        rotateY(0deg);
    }


    50%{
        transform:
        translate3d(0,-18px,30px)
        rotateX(8deg)
        rotateY(-8deg);
    }

}

.footer-social {
    margin-top: 28px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(250,245,236,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(250,245,236,0.85);
    font-size: 16px;
    transition: .3s ease;
}

.social-icons a:hover {
    color: var(--rust);
    border-color: var(--rust);
}

@media(max-width:768px){

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align:center;
    }

    .footer-status {
        justify-self:center;
    }

}

/* ==========================
   Home Page CTA Button Fixes
========================== */

/* Islamabad Hub - Explore Network Button */
#network-teaser .btn-primary {
    background: var(--rust);
    color: #ffffff;
    border: 1px solid var(--rust);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

#network-teaser .btn-primary:hover {
    background: var(--rust);
    color: #ffffff;
    border-color: var(--rust);
}


/* Bottom CTA - Request a Quote Button */
.cta-banner .btn-ghost {
    background: var(--rust);
    color: #ffffff;
    border: 1px solid var(--rust);
    padding: 14px 32px;
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

.cta-banner .btn-ghost:hover {
    background: var(--rust);
    color: #ffffff;
    border-color: var(--rust);
}

/* =========================
 Premium Export FAQ Section
========================= */

.home-faq {
    background:#06131d;
    padding:110px 0;
}


.faq-container {
    width:min(900px, 90%);
    margin:auto;
}


.faq-header {
    text-align:center;
    margin-bottom:55px;
}


.faq-header .eyebrow {
    justify-content:center;
    color:#c99a45;
    margin-bottom:18px;
}


.faq-header h2 {
    color:#fff;
    font-size:48px;
    line-height:1.15;
    margin-bottom:18px;
}


.faq-header p {
    color:rgba(255,255,255,.65);
    max-width:620px;
    margin:auto;
    line-height:1.8;
}


/* FAQ Cards */

.faq-list {
    display:flex;
    flex-direction:column;
    gap:16px;
}


.faq-item {
    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.07),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(255,255,255,.12);
    border-radius:18px;

    transition:.35s ease;
}


.faq-item:hover {
    border-color:#c99a45;
    transform:translateY(-3px);
}


.faq-item summary {

    padding:25px 32px;

    font-size:18px;
    font-weight:600;

    color:white;

    display:flex;
    align-items:center;
    justify-content:space-between;
}


.faq-item summary:after {

    content:"+";

    width:40px;
    height:40px;
    min-width:40px;
    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:var(--rust);
    color:#fff;

    font-size:24px;
    font-weight:700;

    line-height:1;
}


.faq-item[open] summary:after {
    content:"−";
}


.faq-item p {

    padding:0 32px 30px;

    color:rgba(255,255,255,.7);

    line-height:1.8;

    max-width:750px;
}



/* Mobile */

@media(max-width:768px){

.home-faq{
    padding:70px 0;
}


.faq-container{
    width:92%;
}


.faq-header h2{
    font-size:32px;
}


.faq-item summary{
    padding:20px;
    font-size:16px;
}


.faq-item p{
    padding:0 20px 25px;
}

}


@media(max-width:425px){

    .faq-item summary{
        padding:20px 16px;
        gap:12px;
    }

    .faq-item summary:after{

        width:34px;
        height:34px;
        min-width:34px;

        font-size:20px;
    }

}

@media (max-width:425px){

  .showcase-copy p{
    font-size:15px;
    line-height:1.6;
  }

  .showcase-tags{
    margin-top:18px;
    padding-bottom:10px;
  }

  .showcase-tags span{
    font-size:10px;
    padding:8px 12px;
  }

}


@media (max-width:375px){

  .showcase-panel{
    padding:18px;
  }

  .showcase-copy h3{
    font-size:1.8rem;
  }

  .showcase-visual{
    height:190px;
  }

}

/* Small screen buttons side by side */
@media (max-width: 600px) {
    .hero-actions {
        flex-wrap: nowrap;
        gap: 14px;
    }

    .hero-actions .btn {
        flex: 1;
        justify-content: center;
        padding: 14px 12px;
        white-space: nowrap;
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .product-hero-actions {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
        align-items: center;
    }

    .product-hero-actions .btn {
        flex: 1;
        justify-content: center;
        white-space: nowrap;
        padding: 14px 12px;
        font-size: 13px;
    }
}
