/* ============================================================
   BERZAN TRADING — Premium Sportswear Manufacturer & Exporter
   Design System: Dark Luxe / Modern Amber-Orange
   ============================================================ */

:root {
  --ink: #0a0a0c;
  --ink-2: #0e0e12;
  --surface: #15151b;
  --surface-2: #1b1b22;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f5f3f4;
  --muted: #9c9aa1;
  /* Accent palette — modern amber-orange (variable names kept as --gold* to
     avoid churn across the stylesheet; they now hold the orange theme).
     --on-accent is for text/icons sitting ON the accent: orange is light, so
     white would wash out — dark reads far better and looks more premium. */
  --gold: #ff6b1a;
  --gold-bright: #ffa24d;
  --gold-grad: linear-gradient(115deg, #e05a00 0%, #ffab52 50%, #ff6b1a 100%);
  --on-accent: #1a0b00;
  --font-display: "Bebas Neue", "Oswald", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--gold); color: var(--on-accent); }

/* ---------- Layout helpers ---------- */
.container {
  width: min(1240px, 92%);
  margin-inline: auto;
}

.section { padding: clamp(80px, 9vw, 130px) 0; position: relative; }
.section-tight { padding: clamp(56px, 6vw, 90px) 0; }

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold-grad);
}

.h2 {
  font-size: clamp(42px, 5.4vw, 72px);
  margin-bottom: 18px;
}

.h2 .accent,
.accent {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 17.5px);
  max-width: 640px;
}

.section-head { margin-bottom: clamp(44px, 5vw, 70px); }
.section-head.center { text-align: center; }
.section-head.center .lead { margin-inline: auto; }
.section-head.center .eyebrow::before { display: none; }
.section-head.center .eyebrow::after { display: none; }

.section-head.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 36px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease),
    background 0.45s var(--ease), color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(5px); }

.btn-gold {
  background: var(--gold-grad);
  color: var(--on-accent);
  box-shadow: 0 8px 30px rgba(255, 107, 26, 0.28);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(255, 107, 26, 0.42);
}

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-3px);
}

/* ---------- Top bar ---------- */
.topbar {
  background: #060607;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--muted);
  position: relative;
  z-index: 60;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 9px 0;
}
.topbar a:hover { color: var(--gold-bright); }
.topbar-contacts { display: flex; gap: 26px; }
.topbar-contacts span { display: inline-flex; align-items: center; gap: 8px; }
.topbar-loc { letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; font-size: 11px; }
.topbar-loc b { color: var(--gold); font-weight: 700; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 12, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.site-header.scrolled {
  background: rgba(8, 8, 10, 0.88);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 13px; }
.brand-logo { height: 56px; width: auto; display: block; }
.brand-fallback { display: none; align-items: center; gap: 13px; }
.site-footer .brand-logo { height: 78px; }
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--gold-grad);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--on-accent);
  letter-spacing: 0;
  box-shadow: 0 6px 22px rgba(255, 107, 26, 0.35);
}
.brand-name {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.08em;
  line-height: 1;
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.42em;
  color: var(--gold);
  margin-top: 4px;
}

.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .btn { padding: 13px 28px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  width: 46px;
  height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero slider ---------- */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-slides {
  position: relative;
  display: grid;
}
.hero-slide {
  grid-area: 1 / 1;
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(640px, 92vh, 900px);
  padding: 90px 0 170px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
  transition: opacity 1.1s var(--ease), visibility 0s linear 1.1s;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
  transition: opacity 1.1s var(--ease);
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.12);
}
.hero-slide.active .hero-slide-bg {
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(6, 6, 8, 0.94) 22%, rgba(6, 6, 8, 0.55) 58%, rgba(6, 6, 8, 0.25) 100%),
    linear-gradient(to top, var(--ink) 0%, transparent 34%);
}
.hero-slide .container { position: relative; z-index: 2; }

/* Product-mockup slides: subject sits on the right of the image, so keep the
   right side clear and darken the left where the text lives. */
.hero-slide.slide-product .hero-slide-bg { background-position: center right; }
.hero-slide.slide-product::before {
  background:
    linear-gradient(90deg, rgba(6, 6, 8, 0.96) 0%, rgba(6, 6, 8, 0.88) 24%, rgba(6, 6, 8, 0.45) 46%, rgba(6, 6, 8, 0.08) 66%, rgba(6, 6, 8, 0) 100%),
    linear-gradient(to top, var(--ink) 0%, transparent 30%);
}

/* staggered content entrance per slide */
.slide-in {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.hero-slide.active .slide-in { opacity: 1; transform: none; }
.hero-slide.active .slide-in.sd1 { transition-delay: 0.25s; }
.hero-slide.active .slide-in.sd2 { transition-delay: 0.4s; }
.hero-slide.active .slide-in.sd3 { transition-delay: 0.55s; }
.hero-slide.active .slide-in.sd4 { transition-delay: 0.7s; }

/* slider controls */
.hero-dots {
  position: absolute;
  z-index: 6;
  left: 4%;
  bottom: 130px;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 44px;
  height: 5px;
  border-radius: 5px;
  border: none;
  background: rgba(255, 255, 255, 0.22);
  transition: background 0.4s, transform 0.4s var(--ease);
}
.hero-dot:hover { background: rgba(255, 255, 255, 0.45); }
.hero-dot.active { background: var(--gold-grad); transform: scaleY(1.4); }
.hero-arrows {
  position: absolute;
  z-index: 6;
  right: 4%;
  bottom: 122px;
  display: flex;
  gap: 12px;
}
.hero-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(10, 10, 12, 0.35);
  backdrop-filter: blur(8px);
  color: var(--text);
  display: grid;
  place-items: center;
  transition: background 0.4s, color 0.3s, border-color 0.3s, transform 0.4s var(--ease);
}
.hero-arrow svg { width: 18px; height: 18px; stroke: currentColor; }
.hero-arrow:hover {
  background: var(--gold-grad);
  color: var(--on-accent);
  border-color: transparent;
  transform: translateY(-3px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  border: 1px solid rgba(255, 107, 26, 0.4);
  border-radius: 100px;
  background: rgba(255, 107, 26, 0.08);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 30px;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(255, 107, 26, 0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(255, 107, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 26, 0); }
}

.hero h1 {
  font-size: clamp(64px, 9.6vw, 148px);
  max-width: 900px;
  margin-bottom: 26px;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.hero p.lead { margin-bottom: 42px; font-size: clamp(15.5px, 1.35vw, 19px); }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-stats {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 10, 0.5);
  backdrop-filter: blur(14px);
}
.hero-stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
}
.hero-stat {
  padding: 26px 10px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-stat:first-child { border-left: 1px solid rgba(255, 255, 255, 0.08); }
.hero-stat b {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 44px);
  letter-spacing: 0.02em;
  display: block;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stat span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 8px;
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--gold-grad);
  color: var(--on-accent);
  overflow: hidden;
  padding: 15px 0;
  transform: rotate(0deg);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: 0.14em;
  white-space: nowrap;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  gap: 52px;
}
.marquee-track span::after { content: "◆"; font-size: 11px; opacity: 0.55; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Feature strip ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s, background 0.4s;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.feature-card:hover { transform: translateY(-8px); border-color: rgba(255, 107, 26, 0.4); background: var(--surface-2); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 54px; height: 54px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(255, 107, 26, 0.1);
  border: 1px solid rgba(255, 107, 26, 0.3);
  margin-bottom: 22px;
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--gold-bright); }
.feature-card h3 { font-size: 17.5px; font-weight: 800; margin-bottom: 10px; letter-spacing: 0.02em; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ---------- Category grid ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cat-card {
  position: relative;
  aspect-ratio: 4 / 3.2;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
  isolation: isolate;
}
.cat-card-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  transition: transform 1s var(--ease), filter 0.6s;
  filter: saturate(0.85) brightness(0.8);
}
.cat-card:hover .cat-card-bg { transform: scale(1.08); filter: saturate(1.05) brightness(0.9); }
.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 9, 0.92) 8%, rgba(6, 6, 9, 0.25) 55%, rgba(6, 6, 9, 0.05));
  z-index: 0;
  transition: opacity 0.5s;
}
.cat-card-body {
  position: relative;
  z-index: 1;
  padding: 26px 26px 24px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}
.cat-card-body h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: 0.05em;
  line-height: 1;
}
.cat-card-body small {
  display: block;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 9px;
}
.cat-arrow {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  transition: background 0.4s, transform 0.5s var(--ease), border-color 0.4s;
}
.cat-arrow svg { width: 16px; height: 16px; stroke: currentColor; }
.cat-card:hover .cat-arrow {
  background: var(--gold-grad);
  border-color: transparent;
  color: var(--on-accent);
  transform: rotate(-45deg);
}

/* ---------- About split ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about-media { position: relative; }
.about-media .main-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  border: 1px solid var(--line);
}
.about-media .main-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }
.about-media .float-img {
  position: absolute;
  right: -8%;
  bottom: -9%;
  width: 52%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--ink);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}
.about-media .float-img img { width: 100%; height: 100%; object-fit: cover; }
.about-media .exp-badge {
  position: absolute;
  top: 6%;
  left: -7%;
  background: var(--gold-grad);
  color: var(--on-accent);
  border-radius: var(--radius);
  padding: 22px 26px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(255, 107, 26, 0.35);
}
.about-media .exp-badge b {
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 0.9;
  display: block;
}
.about-media .exp-badge span {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.checklist { margin: 30px 0 38px; display: grid; gap: 15px; }
.checklist li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 600;
}
.checklist li svg {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  margin-top: 2px;
  stroke: var(--gold);
}
.checklist li span b { color: var(--gold-bright); font-weight: 700; }
.checklist li p { color: var(--muted); font-weight: 500; font-size: 14px; margin-top: 3px; }

.sign-row { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }
.sign-quote {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
}

/* ---------- Capabilities ---------- */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cap-card {
  background: linear-gradient(160deg, var(--surface) 0%, var(--ink-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 34px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s;
}
.cap-card:hover { transform: translateY(-8px); border-color: rgba(255, 107, 26, 0.45); }
.cap-num {
  font-family: var(--font-display);
  font-size: 84px;
  line-height: 1;
  position: absolute;
  top: 14px;
  right: 22px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 107, 26, 0.28);
  transition: -webkit-text-stroke-color 0.4s;
}
.cap-card:hover .cap-num { -webkit-text-stroke-color: rgba(255, 162, 77, 0.6); }
.cap-card h3 {
  font-family: var(--font-display);
  font-size: 27px;
  letter-spacing: 0.05em;
  margin: 18px 0 12px;
}
.cap-card p { color: var(--muted); font-size: 14.5px; }
.cap-icon {
  width: 58px; height: 58px;
  border-radius: 15px;
  background: rgba(255, 107, 26, 0.09);
  border: 1px solid rgba(255, 107, 26, 0.3);
  display: grid;
  place-items: center;
}
.cap-icon svg { width: 26px; height: 26px; stroke: var(--gold-bright); }

/* ---------- Process ---------- */
.process-wrap { position: relative; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 30px 20px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.5s var(--ease), border-color 0.4s, background 0.4s;
}
.step:hover { transform: translateY(-8px); border-color: rgba(255, 107, 26, 0.45); background: var(--surface-2); }
.step-num {
  width: 52px; height: 52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 24px;
  background: var(--gold-grad);
  color: var(--on-accent);
  box-shadow: 0 8px 24px rgba(255, 107, 26, 0.3);
}
.step h4 { font-size: 15px; font-weight: 800; margin-bottom: 8px; letter-spacing: 0.03em; }
.step p { font-size: 12.5px; color: var(--muted); line-height: 1.55; }

/* ---------- Stats band ---------- */
.stats-band {
  position: relative;
  background-image: linear-gradient(rgba(8, 8, 10, 0.86), rgba(8, 8, 10, 0.86)),
    url("https://images.unsplash.com/photo-1504450758481-7338eba7524a?q=80&w=2000&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-big b {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 84px);
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.stat-big span {
  display: block;
  margin-top: 10px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Testimonials ---------- */
.testi-shell { position: relative; max-width: 880px; margin-inline: auto; text-align: center; }
.testi-track { position: relative; min-height: 300px; }
.testi {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.testi.active { opacity: 1; transform: none; pointer-events: auto; }
.testi-stars { color: var(--gold); letter-spacing: 6px; font-size: 17px; margin-bottom: 24px; }
.testi blockquote {
  font-size: clamp(19px, 2.1vw, 26px);
  font-weight: 600;
  line-height: 1.55;
  max-width: 820px;
}
.testi-person { margin-top: 30px; display: flex; align-items: center; gap: 16px; }
.testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: var(--on-accent);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
}
.testi-person b { display: block; font-size: 15px; letter-spacing: 0.03em; }
.testi-person span { font-size: 12.5px; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; }
.testi-person { text-align: left; }
.testi-dots { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.testi-dot {
  width: 34px; height: 4px;
  border-radius: 4px;
  background: var(--line-strong);
  border: none;
  transition: background 0.4s;
}
.testi-dot.active { background: var(--gold-grad); }

/* ---------- Global reach chips ---------- */
.reach-band { border-block: 1px solid var(--line); background: var(--ink-2); }
.reach-flex { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.reach-flex h3 { font-family: var(--font-display); font-size: 30px; letter-spacing: 0.05em; }
.chips { display: flex; flex-wrap: wrap; gap: 12px; max-width: 720px; }
.chip {
  padding: 9px 20px;
  border-radius: 100px;
  border: 1px solid var(--line-strong);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.chip:hover { border-color: var(--gold); color: var(--gold-bright); background: rgba(255, 107, 26, 0.06); }

/* ---------- CTA band ---------- */
.cta-band { padding: clamp(80px, 9vw, 120px) 0; }
.cta-inner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: clamp(60px, 7vw, 100px) clamp(28px, 6vw, 90px);
  text-align: center;
  background-image: linear-gradient(rgba(9, 9, 11, 0.82), rgba(9, 9, 11, 0.88)),
    url("https://images.unsplash.com/photo-1526506118085-60ce8714f8c5?q=80&w=2000&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 107, 26, 0.3);
}
.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 90% at 50% 0%, rgba(255, 107, 26, 0.16), transparent 70%);
}
.cta-inner > * { position: relative; }
.cta-inner h2 { font-size: clamp(44px, 6vw, 84px); margin-bottom: 18px; }
.cta-inner p { color: var(--muted); max-width: 560px; margin: 0 auto 40px; }
.cta-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
  background: #070708;
  border-top: 1px solid var(--line);
  padding-top: clamp(60px, 7vw, 90px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(36px, 5vw, 70px);
  padding-bottom: 60px;
}
.footer-about p { color: var(--muted); font-size: 14px; margin: 22px 0 26px; max-width: 320px; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-col ul { display: grid; gap: 13px; }
.footer-col a, .footer-col li { color: var(--muted); font-size: 14.5px; transition: color 0.3s, padding-left 0.3s; }
.footer-col a:hover { color: var(--gold-bright); padding-left: 5px; }
.footer-contact li { display: flex; gap: 13px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; stroke: var(--gold); flex: 0 0 auto; margin-top: 3px; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  transition: background 0.4s, border-color 0.4s, transform 0.4s var(--ease);
}
.socials a svg { width: 17px; height: 17px; fill: var(--muted); transition: fill 0.3s; }
.socials a:hover { background: var(--gold-grad); border-color: transparent; transform: translateY(-4px); }
.socials a:hover svg { fill: var(--on-accent); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}
.footer-bottom a { color: var(--gold-bright); }

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative;
  padding: clamp(90px, 11vw, 150px) 0 clamp(70px, 8vw, 110px);
  background-size: cover;
  background-position: center;
  isolation: isolate;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(6, 6, 8, 0.93) 30%, rgba(6, 6, 8, 0.6) 70%, rgba(6, 6, 8, 0.4));
}
.page-hero h1 { font-size: clamp(54px, 8vw, 110px); margin-bottom: 16px; }
.breadcrumb {
  display: inline-flex;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-bright); }

/* ---------- Products page ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: clamp(44px, 5vw, 60px);
}
.filter-btn {
  padding: 12px 28px;
  border-radius: 100px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-bright); }
.filter-btn.active {
  background: var(--gold-grad);
  border-color: transparent;
  color: var(--on-accent);
  box-shadow: 0 8px 24px rgba(255, 107, 26, 0.3);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s, opacity 0.4s;
}
.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 107, 26, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.product-card.hidden { display: none; }
.product-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
  filter: saturate(0.9);
}
.product-card:hover .product-media img { transform: scale(1.09); filter: saturate(1.05); }
.product-tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 7px 16px;
  border-radius: 100px;
  background: rgba(8, 8, 10, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 107, 26, 0.4);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.product-body { padding: 26px 26px 28px; }
.product-body h3 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.product-body p { font-size: 13.5px; color: var(--muted); margin-bottom: 20px; }
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.3s, gap 0.35s var(--ease);
}
.product-link:hover { color: var(--gold-bright); gap: 16px; }
.product-link svg { width: 14px; height: 14px; }

/* ---------- Values (about page) ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}
.contact-cards { display: grid; gap: 18px; }
.contact-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color 0.4s, transform 0.5s var(--ease);
}
.contact-card:hover { border-color: rgba(255, 107, 26, 0.4); transform: translateX(6px); }
.contact-card .feature-icon { margin: 0; flex: 0 0 auto; }
.contact-card h3 { font-size: 15px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.contact-card p, .contact-card a { color: var(--muted); font-size: 14.5px; }
.contact-card a:hover { color: var(--gold-bright); }

.form-shell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(30px, 4vw, 50px);
}
.form-shell h2 { font-size: clamp(34px, 3.6vw, 48px); margin-bottom: 8px; }
.form-shell > p { color: var(--muted); font-size: 14.5px; margin-bottom: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  padding: 15px 18px;
  color: var(--text);
  font-family: inherit;
  font-size: 14.5px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group select { appearance: none; }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.14);
}
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 16px; }
.form-success {
  display: none;
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: 11px;
  border: 1px solid rgba(120, 200, 130, 0.4);
  background: rgba(120, 200, 130, 0.08);
  color: #9ede9f;
  font-size: 14px;
  font-weight: 600;
}
.form-success.show { display: block; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #2c2c34; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { position: relative; }
  .hero-slide { min-height: 620px; padding: 110px 0 150px; }
  .hero-dots { bottom: 60px; }
  .hero-arrows { bottom: 52px; }
}

@media (max-width: 860px) {
  /* Mobile menu: opaque dropdown anchored below the sticky header.
     (position:fixed breaks here — the header's backdrop-filter makes it
     the containing block, clipping a fixed overlay to the header bar.) */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #08080a;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid rgba(255, 107, 26, 0.35);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
    z-index: 90;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links a {
    font-size: 15px;
    padding: 16px 6%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav-links a::after { display: none; }
  .nav-links a:last-child { border-bottom: none; }
  .site-header.menu-open {
    background: #08080a;
    border-bottom-color: var(--line);
  }
  .nav-toggle { display: flex; z-index: 100; }
  .nav-cta .btn { display: none; }
  .about-split, .contact-grid { grid-template-columns: 1fr; }
  .about-media .float-img { right: 0; }
  .about-media .exp-badge { left: 0; }
  .topbar-contacts span:nth-child(2) { display: none; }
  .hero-stats .container { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band { background-attachment: scroll; }
  .section-head.split { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  .features-grid, .cap-grid, .product-grid, .values-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { aspect-ratio: 16 / 10; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar .container { justify-content: center; }
  .topbar-loc { display: none; }
  .btn { padding: 15px 28px; }
  .brand-logo { height: 44px; }
  .site-footer .brand-logo { height: 60px; }
  .hero-arrows { display: none; }
  .hero-slide { min-height: 560px; padding: 90px 0 120px; }
  .hero-dots { bottom: 44px; left: 6%; }
  .hero h1 { font-size: clamp(56px, 15vw, 88px); }

  /* Product slide on phones: text at top, uniforms framed and visible below. */
  .hero-slide.slide-product { align-items: flex-start; min-height: 640px; }
  .hero-slide.slide-product .container { padding-top: 88px; }
  .hero-slide.slide-product .hero-slide-bg { background-position: 66% center; }
  .hero-slide.slide-product::before {
    background: linear-gradient(180deg,
      rgba(6, 6, 8, 0.94) 0%,
      rgba(6, 6, 8, 0.72) 30%,
      rgba(6, 6, 8, 0.48) 54%,
      rgba(6, 6, 8, 0.82) 84%,
      var(--ink) 100%);
  }
}
