/* ============================================================
   SPC — Supply, Production & Construction
   Industrial Precision Design System
   ============================================================ */

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

:root {
  --black:        #080B12;
  --navy:         #0D1321;
  --steel:        #141C2B;
  --steel-mid:    #1E2B3C;
  --steel-light:  #263348;
  --amber:        #E8901A;
  --amber-bright: #F5A623;
  --amber-pale:   #F5A62322;
  --white:        #F0EDE8;
  --white-dim:    #B8B4AE;
  --grey:         #7A8A9E;
  --grey-dark:    #3D4F63;
  --line:         #1E2B3C;
  --line-bright:  #2A3D55;

  --serif: 'Bebas Neue', sans-serif;
  --serif-cyr: 'Russo One', sans-serif;
  --body:  'IBM Plex Sans', sans-serif;
  --mono:  'IBM Plex Mono', monospace;

  --t: 0.3s ease;
  --t-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }

/* ---- SELECTION ---- */
::selection { background: var(--amber); color: var(--black); }

/* ---- CONTAINER ---- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 { font-family: var(--serif); letter-spacing: 0.02em; }
em { font-family: var(--serif); font-style: normal; color: var(--amber); }

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}
.section-label__num {
  font-size: 0.65rem;
  color: var(--grey);
  padding-right: 0.75rem;
  border-right: 1px solid var(--grey-dark);
}
.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 3.5rem;
}
.section-header { text-align: center; }
.section-header .section-label { justify-content: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: translateX(0); }

.btn--amber {
  background: var(--amber);
  color: var(--black);
  font-weight: 500;
}
.btn--amber:hover { background: var(--amber-bright); }

.btn--ghost {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  color: var(--white);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-highlight);
}
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); background: var(--glass-bg-strong); }

.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   FROSTED STEEL — dark backdrop-blur surface system
   (industrial premium, not white glassmorphism)
   ============================================================ */
:root {
  --glass-bg:        rgba(15, 21, 34, 0.55);
  --glass-bg-strong: rgba(9, 13, 22, 0.82);
  --glass-border:    rgba(255, 255, 255, 0.07);
  --glass-blur:      blur(16px) saturate(118%);
  --glass-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  --glass-shadow:    0 10px 34px rgba(0, 0, 0, 0.45);
}
.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-highlight), var(--glass-shadow);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-highlight), 0 4px 24px rgba(0, 0, 0, 0.25);
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.nav--scrolled {
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
  padding: 0.85rem 2.5rem;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-highlight), var(--glass-shadow);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.nav__logo-mark {
  flex-shrink: 0;
  display: block;
}
.nav__logo-wordmark {
  flex-shrink: 0;
  display: block;
  overflow: visible;
}
.nav__logo-text {
  display: block;
  white-space: pre-line;
  padding-left: 0.8rem;
  border-left: 1px solid var(--steel);
  font-family: var(--mono);
  font-size: 0.58rem;
  line-height: 1.25;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-dim);
}
@media (max-width: 1024px) {
  .nav__logo-text { display: none; }
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav__links a {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color var(--t);
}
.nav__links a:hover { color: var(--amber); }
.nav__cta {
  background: var(--amber) !important;
  color: var(--black) !important;
  padding: 0.55rem 1.25rem;
  font-weight: 500 !important;
}
.nav__cta:hover { background: var(--amber-bright) !important; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--t);
}
@media (max-width: 768px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--steel);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 2rem;
    transition: right 0.4s ease;
    border-left: 1px solid var(--line-bright);
  }
  .nav__links.open { right: 0; }
  .nav__links a { font-size: 0.9rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--black) url('assets/hero-ppe.jpg') center right / cover no-repeat;
  transform: scale(1.04);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8,11,18,0.97) 0%, rgba(8,11,18,0.86) 34%, rgba(8,11,18,0.48) 66%, rgba(8,11,18,0.26) 100%),
    linear-gradient(0deg, rgba(8,11,18,0.92) 0%, rgba(8,11,18,0) 42%);
}
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0.30;
}
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(var(--line-bright) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-bright) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.10;
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 1240px;
  margin: 0 auto;
  padding: min(8rem, 10vh) 2rem 3rem;
  width: 100%;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero__eyebrow-line {
  display: block;
  height: 1px;
  width: 40px;
  background: var(--amber);
  opacity: 0.6;
}
.hero__title {
  display: flex;
  flex-direction: column;
  font-size: clamp(4rem, min(14vw, 17vh), 11rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: titleReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero__title-line[data-delay="0"]   { animation-delay: 0.4s; }
.hero__title-line[data-delay="120"] { animation-delay: 0.52s; }
.hero__title-line[data-delay="240"] { animation-delay: 0.64s; }
.hero__title-line--accent { color: var(--amber); -webkit-text-stroke: 0px; }

.hero__sub {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero__tag {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-dark);
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}
.hero__tag-num {
  color: var(--amber);
  font-size: 0.65rem;
}

/* ============================================================
   TRUST BAND
   ============================================================ */
.trust-band {
  background: var(--steel);
  border-top: 1px solid var(--line-bright);
  border-bottom: 1px solid var(--line-bright);
}
.trust-band__inner {
  display: flex;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}
.trust-band__item {
  flex: 1;
  padding: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.trust-band__label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
}
.trust-band__value {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
}
.trust-band__divider {
  width: 1px;
  height: 40px;
  background: var(--line-bright);
  margin: 0 2rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .trust-band__inner { flex-direction: column; gap: 0; }
  .trust-band__item { padding: 1.25rem 0; border-bottom: 1px solid var(--line-bright); width: 100%; }
  .trust-band__item:last-child { border-bottom: none; }
  .trust-band__divider { display: none; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}
.about__title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.about__accent-bar {
  width: 60px;
  height: 3px;
  background: var(--amber);
  margin-top: 1rem;
}
.about__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.about__body {
  color: var(--white-dim);
  margin-bottom: 2.5rem;
}
.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.about__pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line-bright);
  background: var(--steel);
  transition: border-color var(--t);
}
.about__pillar:hover { border-color: var(--amber); }
.about__pillar-icon {
  color: var(--amber);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.about__pillar strong {
  display: block;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.about__pillar span {
  font-size: 0.85rem;
  color: var(--grey);
}
@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--steel);
  border-top: 1px solid var(--line-bright);
  border-bottom: 1px solid var(--line-bright);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 59px,
    var(--line-bright) 59px,
    var(--line-bright) 60px
  );
  opacity: 0.3;
}
.stats__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 1.5rem 2rem;
  text-align: center;
  border-right: 1px solid var(--line-bright);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--amber);
  line-height: 1;
  display: inline-block;
}
.stat__unit {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  color: var(--amber);
  vertical-align: super;
}
.stat__label {
  display: block;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat { border-bottom: 1px solid var(--line-bright); }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
}

/* ============================================================
   CAPABILITIES
   ============================================================ */
.capabilities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--line-bright);
  border: 1.5px solid var(--line-bright);
}
.cap-card {
  background: var(--navy);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background var(--t);
  cursor: default;
}
.cap-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.cap-card:hover { background: var(--steel); }
.cap-card:hover::before { transform: scaleX(1); }
.cap-card__num {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--grey-dark);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.cap-card__icon {
  width: 52px;
  height: 52px;
  color: var(--amber);
  margin-bottom: 1.5rem;
  transition: transform var(--t);
}
.cap-card:hover .cap-card__icon { transform: scale(1.1); }
.cap-card__title {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cap-card__desc {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.cap-card__items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.cap-card__items li {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--white-dim);
  padding-left: 1rem;
  position: relative;
}
.cap-card__items li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--amber);
}
.cap-card__arrow {
  font-size: 1.2rem;
  color: var(--amber);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cap-card:hover .cap-card__arrow { opacity: 1; transform: translateX(0); }
@media (max-width: 1024px) {
  .capabilities__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .capabilities__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  background: var(--amber);
  padding: 0.9rem 0;
  border-top: none;
}
.marquee__track {
  display: flex;
  gap: 2rem;
  align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee__track span {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
}
.marquee__dot {
  font-size: 0.5rem !important;
  opacity: 0.5;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--line-bright);
  border: 1.5px solid var(--line-bright);
}
.product-card {
  background: var(--navy);
  overflow: hidden;
  transition: background var(--t);
  display: flex;
  flex-direction: column;
}
.product-card:hover { background: var(--steel); }
.product-card__cat {
  padding: 1rem 1.5rem 0;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}
.product-card__img {
  width: 100%;
  height: 180px;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* Illustrated placeholders using CSS art */
.product-card__img--ppe    { background: linear-gradient(135deg, #1a2535 0%, #0d1a2b 100%); }
.product-card__img--boots  { background: linear-gradient(135deg, #1e2535 0%, #131b2e 100%); }
.product-card__img--hivis  { background: linear-gradient(135deg, #1c2030 0%, #0f1822 100%); }
.product-card__img--coverall{ background: linear-gradient(135deg, #1a2030 0%, #111922 100%); }
.product-card__img--gloves { background: linear-gradient(135deg, #1d2438 0%, #121b2c 100%); }
.product-card__img--resp   { background: linear-gradient(135deg, #1a2232 0%, #0e1828 100%); }

.product-card__img::after {
  content: attr(class);
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--amber);
  opacity: 0.12;
  letter-spacing: 0.05em;
  position: absolute;
}
/* Override content with icons */
.product-card__img--ppe::before    { content: '⛑'; font-size: 4rem; }
.product-card__img--boots::before  { content: '🥾'; font-size: 4rem; }
.product-card__img--hivis::before  { content: '🦺'; font-size: 4rem; }
.product-card__img--coverall::before { content: '👷'; font-size: 4rem; }
.product-card__img--gloves::before { content: '🧤'; font-size: 4rem; }
.product-card__img--resp::before   { content: '😷'; font-size: 4rem; }
.product-card__img::before {
  position: absolute;
  filter: grayscale(0.3);
}

.product-card__body {
  padding: 0 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__body h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.product-card__body p {
  font-size: 0.83rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}
.product-card__specs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.product-card__specs span {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--amber);
  background: var(--amber-pale);
  border: 1px solid var(--amber);
  padding: 0.2rem 0.6rem;
}
@media (max-width: 900px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .products__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TENDERS
   ============================================================ */
.tenders {
  background: var(--steel);
  border-top: 1px solid var(--line-bright);
  border-bottom: 1px solid var(--line-bright);
}
.tenders__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: center;
}
.tenders__title {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.tenders__left p {
  color: var(--white-dim);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.tender-checklist {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tender-check {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line-bright);
  cursor: pointer;
  position: relative;
  transition: padding-left 0.3s ease;
}
/* Left amber sweep on hover */
.tender-check::before {
  content: '';
  position: absolute;
  left: -1.5rem; top: 0; bottom: 0;
  width: 3px;
  background: var(--amber);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.tender-check:hover { padding-left: 0.75rem; }
.tender-check:hover::before { transform: scaleY(1); }
.tender-check:last-child { border-bottom: none; }
.tender-check__icon {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--amber);
  opacity: 0.35;
  flex-shrink: 0;
  width: 44px;
  line-height: 1;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: none;
  display: block;
  margin-top: -0.1rem;
}
.tender-check:hover .tender-check__icon {
  opacity: 1;
  transform: scale(1.15);
}
.tender-check strong {
  display: block;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
  transition: color 0.25s ease;
}
.tender-check:hover strong { color: var(--amber); }
/* Accordion: description collapsed by default */
.tender-check span {
  font-size: 0.82rem;
  color: var(--grey);
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
.tender-check:hover span,
.tender-check.open span {
  max-height: 5rem;
  opacity: 1;
}
@media (max-width: 900px) {
  .tenders__inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ============================================================
   SECTORS
   ============================================================ */
.sectors__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--line-bright);
  border: 1.5px solid var(--line-bright);
}
.sector-item {
  background: var(--navy);
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: background var(--t), box-shadow var(--t);
  cursor: default;
}
/* Diagonal stripe texture */
.sector-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(232,144,26,0.03) 12px,
    rgba(232,144,26,0.03) 13px
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
/* Amber bottom accent */
.sector-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.sector-item:hover { background: var(--steel); box-shadow: inset 0 0 30px rgba(232,144,26,0.04); }
.sector-item:hover::before { opacity: 1; }
.sector-item:hover::after { transform: scaleX(1); }
.sector-item:hover .sector-item__icon { transform: scale(1.25) rotate(-5deg); filter: drop-shadow(0 0 8px rgba(232,144,26,0.5)); }
.sector-item:hover strong { color: var(--amber); }
.sector-item__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
}
.sector-item strong {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--t);
}
@media (max-width: 900px) {
  .sectors__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .sectors__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--black);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.contact__title {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.contact__left p {
  color: var(--white-dim);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__info-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.contact__info-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}
.contact__info-item span:last-child {
  font-size: 0.9rem;
  color: var(--white-dim);
}

/* ---- CONTACT DOWNLOADS ---- */
.contact__downloads {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.contact__downloads-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  display: block;
  margin-bottom: 0.75rem;
}
.contact__downloads-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.contact__dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid #2a3a4e;
  color: var(--grey);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.contact__dl-btn:hover {
  border-color: var(--amber);
  color: var(--white);
}
.contact__dl-btn--primary {
  background: var(--amber);
  border-color: var(--amber);
  color: #000;
  font-weight: 700;
}
.contact__dl-btn--primary:hover {
  background: var(--amber-bright);
  border-color: var(--amber-bright);
  color: #000;
}
.contact__dl-ext {
  font-size: 0.55rem;
  opacity: 0.55;
  margin-left: 0.1rem;
}

/* ---- FORM ---- */
.contact-form {
  background: var(--steel);
  border: 1px solid var(--line-bright);
  padding: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group:last-of-type { margin-bottom: 1.5rem; }
.form-group label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy);
  border: 1px solid var(--line-bright);
  color: var(--white);
  font-family: var(--body);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  transition: border-color var(--t), background var(--t);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  background: var(--steel-light);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23E8901A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-dark); }
.form-group select option { background: var(--steel); }

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--white-dim);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.checkbox-label input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--amber);
  flex-shrink: 0;
}

.form-note {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--grey);
  text-align: center;
  margin-top: 0.75rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--steel);
  border: 1px solid var(--amber);
}
.form-success.show { display: block; }
.form-success__icon {
  width: 56px;
  height: 56px;
  background: var(--amber);
  color: var(--black);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.form-success p {
  color: var(--grey);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .checkbox-group { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--steel);
  border-top: 1px solid var(--line-bright);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
}
.footer__logo {
  display: block;
  margin-bottom: 0.5rem;
}
.footer__tagline {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  display: block;
  margin-bottom: 1.25rem;
}
.footer__desc {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.65;
}
.footer__links h4 {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.footer__links ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer__links a {
  font-size: 0.85rem;
  color: var(--grey);
  text-decoration: none;
  transition: color var(--t);
}
.footer__links a:hover { color: var(--white); }
.footer__cert h4 {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.footer__cert-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__cert-badge {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--white-dim);
  background: var(--steel-light);
  border: 1px solid var(--line-bright);
  padding: 0.3rem 0.65rem;
}
.footer__bottom {
  border-top: 1px solid var(--line-bright);
  padding: 1.25rem 0;
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--grey-dark);
}
@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom .container { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal--delay  { transition-delay: 0.12s; }
.reveal--delay-2{ transition-delay: 0.24s; }
.reveal--delay-3{ transition-delay: 0.36s; }
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SKELETON LOADERS (shimmer placeholders)
   Parent gets .is-loading (added by JS) → a gradient sweep (::before)
   shows behind the photo until it loads; .loaded-host then fades the
   shimmer out as the image cross-fades in. Opacity is scoped to
   imgs INSIDE a .is-loading host, so if JS never runs the images
   (and all logos/icons) still show normally. ::before is used because
   .prod-card__img and .gall-page__item both already use ::after.
   ============================================================ */
.is-loading { position: relative; }
.is-loading::before {
  content: ""; position: absolute; inset: 0; transform: translateX(-100%); pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(42,61,85,0.55), transparent);
  animation: skelSweep 1.4s ease-in-out infinite;
}
.is-loading > img { opacity: 0; transition: opacity 0.5s ease, transform 0.5s ease; }
.is-loading.loaded-host > img { opacity: 1; }
.is-loading.loaded-host::before { animation: none; opacity: 0; }

.skel { position: relative; overflow: hidden; background: var(--steel); border-radius: 4px; }
.skel::after {
  content: ""; position: absolute; inset: 0; transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(42,61,85,0.55), transparent);
  animation: skelSweep 1.4s ease-in-out infinite;
}
.skel--line { height: 14px; border-radius: 6px; margin-bottom: 0.6rem; }
.skel--line.short { width: 50%; }

@media (prefers-reduced-motion: reduce) {
  .is-loading::before, .skel::after { animation: none; transform: none; }
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes skelSweep { to { transform: translateX(100%); } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes titleReveal {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   LANGUAGE SWITCHER (index.html)
   ============================================================ */
.nav__lang-switcher {
  display: flex;
  gap: 2px;
  align-items: center;
  margin-left: 0.5rem;
}
.lang-btn {
  background: none;
  border: 1px solid transparent;
  color: var(--grey);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  transition: color var(--t), border-color var(--t);
}
.lang-btn:hover { color: var(--white); }
.lang-btn.active { color: var(--amber); border-color: var(--amber); }

/* ============================================================
   CYRILLIC FONT + LETTER-SPACING OVERRIDES
   ============================================================ */
body[data-lang="ru"] {
  --serif: 'Oswald', sans-serif;
}
body[data-lang="ru"] h1,
body[data-lang="ru"] h2,
body[data-lang="ru"] h3 { letter-spacing: 0; font-weight: 700; }
body[data-lang="ru"] .stat__num,
body[data-lang="ru"] .stat__unit { letter-spacing: 0; }
body[data-lang="ru"] .hero__eyebrow { letter-spacing: 0.07em; }
body[data-lang="ru"] .hero__sub { letter-spacing: 0.05em; }
body[data-lang="ru"] .section-label { letter-spacing: 0.08em; }
body[data-lang="ru"] .tender-check strong { letter-spacing: 0; }
body[data-lang="ru"] .about__pillar strong { letter-spacing: 0; }
body[data-lang="ru"] .hero__title { font-size: clamp(3.5rem, min(10vw, 15vh), 9rem); font-weight: 700; }
body[data-lang="ru"] .cap-card__num { font-weight: 700; }
body[data-lang="ru"] .tenders__title,
body[data-lang="ru"] .about__title,
body[data-lang="ru"] .contact__title { font-weight: 700; }

/* Azerbaijani ə character fix — rendered via span.az-sch in JS */
.az-sch {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: inherit;
  letter-spacing: 0;   /* prevent inherited letter-spacing from creating gaps around Ə */
  font-style: normal;  /* prevent em/italic contexts bleeding in */
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: var(--amber);
  z-index: 9999;
  transition: width 0.05s linear;
  pointer-events: none;
}

.sector-other-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.75rem 1rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
}
.sector-other-input:focus { border-color: var(--amber); }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot {
  position: fixed;
  left: 0; top: 0;
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.12s ease, height 0.12s ease;
  opacity: 0;
}
.cursor-ring {
  position: fixed;
  left: 0; top: 0;
  width: 32px; height: 32px;
  border: 1px solid rgba(232,144,26,0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
  opacity: 0;
}
body.cursor-active .cursor-dot,
body.cursor-active .cursor-ring { opacity: 1; }
body.cursor-hover .cursor-dot  { width: 14px; height: 14px; }
body.cursor-hover .cursor-ring { width: 52px; height: 52px; border-color: var(--amber); }
body.cursor-active { cursor: none; }
body.cursor-active a, body.cursor-active button,
body.cursor-active .cap-card, body.cursor-active .sector-item,
body.cursor-active .about__pillar, body.cursor-active .tender-check { cursor: none; }

/* ============================================================
   PHONE FIELD WITH COUNTRY CODE
   ============================================================ */
.phone-field {
  position: relative;
  display: flex;
  gap: 0;
}
.phone-field__flag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0.75rem;
  background: var(--steel);
  border: 1px solid var(--line-bright);
  border-right: none;
  color: var(--white-dim);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t), border-color var(--t);
  border-radius: 0;
  flex-shrink: 0;
}
.phone-field__flag:hover { background: var(--steel-light); border-color: var(--amber); }
.phone-field__flag:focus { outline: none; border-color: var(--amber); }
.phone-field__chevron { font-size: 0.6rem; opacity: 0.5; margin-left: 0.1rem; }
#phoneFlagEmoji { font-size: 1.1rem; line-height: 1; }
#phoneDialCode { color: var(--amber); font-size: 0.75rem; min-width: 2.8rem; }
.phone-field__input {
  flex: 1;
  min-width: 0;
  border-radius: 0;
}
.phone-field__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 280px;
  background: var(--navy);
  border: 1px solid var(--line-bright);
  z-index: 200;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.phone-field__dropdown[hidden] { display: none; }
.phone-field__search {
  width: 100%;
  padding: 0.55rem 0.75rem;
  background: var(--steel);
  border: none;
  border-bottom: 1px solid var(--line-bright);
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  outline: none;
}
.phone-field__search::placeholder { color: var(--grey-dark); }
.phone-field__list {
  list-style: none;
  max-height: 220px;
  overflow-y: auto;
  padding: 0.25rem 0;
  margin: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--line-bright) transparent;
}
.phone-field__list li button {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.45rem 0.75rem;
  background: none;
  border: none;
  color: var(--white-dim);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-align: left;
  cursor: pointer;
  transition: background var(--t);
}
.phone-field__list li button:hover,
.phone-field__list li button.selected { background: var(--steel); color: var(--white); }
.phone-field__list li button .p-flag { font-size: 1rem; flex-shrink: 0; width: 1.4rem; }
.phone-field__list li button .p-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.phone-field__list li button .p-code { color: var(--amber); margin-left: auto; flex-shrink: 0; }

/* ============================================================
   CAP CARD 3D TILT
   ============================================================ */
.cap-card { transform-style: preserve-3d; will-change: transform; }
.cap-card.tilt-active { transition: transform 0.05s linear, box-shadow 0.05s linear; }

/* ============================================================
   GALLERY / SHOWCASE SECTION
   ============================================================ */
.gallery__filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.gallery__filter {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  background: transparent;
  border: 1px solid var(--line-bright);
  padding: 0.45rem 1rem;
  cursor: pointer;
  transition: color var(--t), border-color var(--t), background var(--t);
}
.gallery__filter:hover { color: var(--white); border-color: var(--grey-dark); }
.gallery__filter.active { background: var(--amber); border-color: var(--amber); color: var(--black); font-weight: 600; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 4px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--steel);
}
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__cat {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.25rem;
  display: block;
}
.gallery__cap {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--white);
  margin: 0;
}
/* Hide filtered items */
.gallery__item[hidden] { display: none; }

/* Lightbox */
.gallery__lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.93);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  animation: fadeIn 0.25s ease;
}
.gallery__lightbox[hidden] { display: none; }
.gallery__lb-img {
  max-width: 90vw;
  max-height: 75vh;
  object-fit: contain;
  border: 1px solid rgba(255,255,255,0.1);
}
.gallery__lb-cap {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--grey);
  text-align: center;
  margin: 0;
}
.gallery__lb-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: 1px solid var(--grey-dark);
  color: var(--grey);
  font-size: 1rem;
  width: 2.5rem; height: 2.5rem;
  cursor: pointer;
  transition: border-color var(--t), color var(--t);
  display: flex; align-items: center; justify-content: center;
}
.gallery__lb-close:hover { border-color: var(--amber); color: var(--amber); }
.gallery__lb-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: none;
  border: 1px solid var(--grey-dark);
  color: var(--white);
  width: 3rem; height: 3rem;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--t), color var(--t);
}
.gallery__lb-nav:hover { border-color: var(--amber); color: var(--amber); }
.gallery__lb-prev { left: 1.5rem; }
.gallery__lb-next { right: 1.5rem; }

@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 1; }
}
@media (max-width: 600px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--tall { grid-row: span 1; }
}
.cap-card:not(.tilt-active) { transition: background var(--t), transform 0.4s ease, box-shadow 0.4s ease; }

/* ============================================================
   SCROLL-TO-TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 2.75rem;
  height: 2.75rem;
  background: var(--amber);
  color: var(--black);
  border: none;
  border-radius: 0;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  pointer-events: none;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.scroll-top:hover { background: #fff; }
/* Lift above inquiry bar on products page */
body.has-inq-bar .scroll-top  { bottom: 6rem; }
body.has-inq-bar .float-btns  { bottom: 9.5rem; }

/* ============================================================
   FLOATING CONTACT BUTTONS (WhatsApp + Telegram)
   ============================================================ */
.float-btns {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 500;
}
.float-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}
.float-btn:hover { transform: scale(1.12); box-shadow: 0 6px 24px rgba(0,0,0,0.6); }
.float-btn--wa  { background: #25D366; }
.float-btn--ig  { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.float-btn--ph  { background: var(--amber); }
.float-btn svg  { width: 1.25rem; height: 1.25rem; fill: #fff; }
/* Tooltip */
.float-btn::before {
  content: attr(data-tip);
  position: absolute;
  right: 3.5rem;
  background: rgba(0,0,0,0.85);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding: 0.3rem 0.6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.float-btn:hover::before { opacity: 1; }

/* ============================================================
   COOKIE NOTICE
   ============================================================ */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: #111;
  border-top: 1px solid #222;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar__text {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--grey);
  letter-spacing: 0.04em;
  flex: 1;
  min-width: 220px;
}
.cookie-bar__text a { color: var(--amber); text-decoration: none; }
.cookie-bar__text a:hover { text-decoration: underline; }
.cookie-bar__btns { display: flex; gap: 0.5rem; }
.cookie-btn {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cookie-btn--accept { background: var(--amber); color: var(--black); font-weight: 700; }
.cookie-btn--decline { background: transparent; color: var(--grey); border: 1px solid #333; }
.cookie-btn:hover { opacity: 0.8; }
/* Progress bar auto-dismiss */
.cookie-bar__timer {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--amber);
  width: 100%;
  transform-origin: left;
  animation: cookieTimer 12s linear forwards;
}
@keyframes cookieTimer { to { transform: scaleX(0); } }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  background: #080808;
  padding: 5rem 0;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}
.video-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.video-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.video-section__title {
  font-family: var(--bebas);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1;
}
.video-section__title em { color: var(--amber); font-style: normal; }
.video-section__sub {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--grey);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #111;
  border: 1px solid #222;
  overflow: hidden;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/* Placeholder when no real video yet */
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #0d0d0d;
  cursor: pointer;
}
.video-placeholder__icon {
  width: 5rem;
  height: 5rem;
  border: 1px solid var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--amber);
  transition: background 0.2s;
}
.video-placeholder:hover .video-placeholder__icon { background: var(--amber); color: var(--black); }
.video-placeholder__label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--grey);
  text-transform: uppercase;
}

/* Footer social links */
.footer__social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer__social-link {
  width: 2rem; height: 2rem;
  border: 1px solid #333;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey);
  text-decoration: none;
  font-size: 0.75rem;
  transition: border-color 0.2s, color 0.2s;
}
.footer__social-link:hover { border-color: var(--amber); color: var(--amber); }

/* ── CERTIFICATIONS SECTION ───────────────────────────────── */
.certifications { background: var(--black); border-top: 1px solid var(--line-bright); border-bottom: 1px solid var(--line-bright); }

.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-bright);
  border: 1px solid var(--line-bright);
  margin-top: 3.5rem;
}
@media (max-width: 900px) { .certs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .certs-grid { grid-template-columns: 1fr; } }

.cert-card {
  background: var(--navy);
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background var(--t);
}
.cert-card:hover { background: var(--steel); }

.cert-card__issuer {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.25rem;
}

.cert-card__num {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.1;
}

.cert-card__name {
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cert-card__desc {
  font-family: var(--body);
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.65;
  flex: 1;
  margin-top: 0.25rem;
}

.cert-card__dl {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  border-top: 1px solid var(--line-bright);
  padding-top: 0.9rem;
  margin-top: 0.75rem;
  transition: color var(--t), gap var(--t);
}
.cert-card__dl:hover { color: var(--amber-bright); gap: 0.7rem; }

.certs-tuv-note {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--line-bright);
  background: var(--steel);
  border-left: 3px solid var(--amber);
}
.certs-tuv-note__text {
  font-family: var(--body);
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.7;
}

.section-sub {
  max-width: 600px;
  color: var(--white-dim);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 0.75rem;
}
.footer__social-link svg { width: 0.85rem; height: 0.85rem; fill: currentColor; }
