*,
*::before,
*::after {


  /* ══════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════ */
  .whatsapp-float {
    position: fixed;
    right: clamp(12px, 2.5vw, 24px);
    bottom: clamp(12px, 2.5vw, 24px);
    z-index: 1200;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    color: #fff;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }

  .whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
    display: block;
    fill: #fff;
  }

  @media (max-width: 400px) {
    .whatsapp-float {
      width: 48px;
      height: 48px;
      right: 14px;
      bottom: 14px;
    }
  }

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

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

:root {
  --r: #D01A1A;
  --r2: #FF2626;
  --r3: #8B0000;
  --blk: #0D0D0D;
  --blk2: #141414;
  --blk3: #1A1A1A;
  --blk4: #222222;
  --wh: #F0F0F0;
  --wh2: #B0B0B0;
  --wh3: #555555;
  --border: rgba(255, 255, 255, 0.07);
  --rborder: rgba(208, 26, 26, 0.4);
  --pad: clamp(20px, 5vw, 60px);
}

body {
  font-family: 'Exo 2', sans-serif;
  background: var(--blk);
  color: var(--wh);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

#logo-diametra,
#logo-tunc {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 2px rgba(255, 255, 255, 0.9));
}

/* ── Section tag ── */
.stag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--r);
  margin-bottom: 16px;
}

.stag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--r);
}

/* ── Section heading ── */
h2.sh {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: 2px;
  color: #fff;
  line-height: 1;
}

h2.sh span {
  color: var(--r);
}

section {
  padding: clamp(60px, 8vw, 100px) var(--pad);
}

/* ── Buttons ── */
.btn-r {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--r);
  color: #fff;
  text-decoration: none;
  font-family: 'Exo 2', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.btn-r:hover {
  background: var(--r2);
}

.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--wh3);
  color: var(--wh2);
  text-decoration: none;
  font-family: 'Exo 2', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-o:hover {
  border-color: var(--r);
  color: var(--r);
}

/* ── Fade-up animation ── */
.fu {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s, transform 0.65s;
}

.fu.vis {
  opacity: 1;
  transform: translateY(0);
}


/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 56px);
  background: rgba(13, 13, 13, 0);
  transition: background 0.4s, box-shadow 0.4s;
}

#nav.scrolled {
  background: rgba(13, 13, 13, 0.97);
  box-shadow: 0 1px 0 var(--rborder);
}

.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(1.1);
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links li a {
  display: block;
  padding: 8px 16px;
  font-family: 'Exo 2', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--r);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

.nav-links li a:hover {
  color: #fff;
}

.nav-links li a:hover::after {
  transform: scaleX(1);
}

.nav-links li a.active {
  color: var(--r);
}

.nav-links li a.active::after {
  transform: scaleX(1);
}

/* CTA button */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--r);
  color: #fff !important;
  font-family: 'Exo 2', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 22px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--r2);
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--wh2);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(13, 13, 13, 0.99);
  border-bottom: 1px solid var(--rborder);
  flex-direction: column;
  z-index: 998;
  padding: 12px 0 20px;
}

.nav-drawer.open {
  display: flex;
}

.nav-drawer li {
  list-style: none;
}

.nav-drawer li a {
  display: block;
  padding: 14px clamp(20px, 4vw, 56px);
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}

.nav-drawer li a:hover {
  color: var(--r);
  padding-left: calc(clamp(20px, 4vw, 56px) + 8px);
}

.nav-drawer li:last-child a {
  border-bottom: none;
}

.nav-drawer .drawer-cta {
  margin: 16px clamp(20px, 4vw, 56px) 0;
  text-align: center;
}

.nav-drawer .drawer-cta a {
  width: 100%;
  justify-content: center;
  clip-path: none;
}


/* ══════════════════════════════════
   HERO
══════════════════════════════════ */

#home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 14vh, 140px) var(--pad) clamp(80px, 10vh, 100px);
}

.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 14vh, 140px) var(--pad) clamp(80px, 10vh, 100px);
}

.page-404 .container {
  position: relative;
  z-index: 1;
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at center, rgba(13, 13, 13, 0.62) 0%, rgba(13, 13, 13, 0.78) 60%, rgba(13, 13, 13, 0.9) 100%),
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)),
    url("images/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  opacity: 1;
  filter: saturate(0.95) contrast(0.98);
}



.hero-body {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

/* Left-align hero content to page padding */
.hero-body {
  margin-left: var(--pad);
  margin-right: 0;
  text-align: left;
  padding: 0;
  max-width: 820px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Improve hero text readability */
.hero-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wh2);
  margin-bottom: 8px;
  display: block;
  width: clamp(160px, 35vw, 380px);
  margin-left: 0;
  text-align: left;
}

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 8vw, 88px);
  line-height: 1;
  margin: 0 0 10px;
  color: #fff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.6);
}

.hero-h1 .hero-h1-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--wh2);
  letter-spacing: 2px;
  margin-top: 2px;
  transform: translateY(-8px);
  width: clamp(160px, 35vw, 380px);
}

.hero-h1 .hero-h1-sub::before,
.hero-h1 .hero-h1-sub::after {
  content: '';
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  flex: 1 1 0;
}

.hero-h1 .hero-h1-sub::before {
  margin-right: 14px;
}

.hero-h1 .hero-h1-sub::after {
  margin-left: 14px;
}

/* Logo inside hero */
.hero-logo {
  display: block;
  max-width: 380px;
  width: clamp(160px, 35vw, 380px);
  height: auto;
  margin: 0 0 8px;
  filter: brightness(1.05) saturate(0.98);
}

.hero-h1 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 0 0 10px;
  gap: 6px;
}

.hero-h1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  transform: none;
  width: clamp(220px, 40vw, 420px);
  height: calc(min(120px, 12vw));
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 40%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-logo,
.hero-h1 .hero-h1-sub {
  position: relative;
  z-index: 2;
}

.hero-logo {
  filter: brightness(1.05) saturate(0.98);
  margin-left: 0;
}

.hero-sub {
  font-size: 15px;
  color: var(--wh2);
  max-width: 680px;
  margin-bottom: 18px;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}

/* Make stats bar slightly more translucent so hero image doesn't clash */
.hero-stats {
  background: rgba(18, 18, 18, 0.86);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  background: var(--blk2);
  border-top: 1px solid var(--border);
  z-index: 2;
}

.hstat {
  flex: 1;
  min-width: 120px;
  padding: 18px clamp(16px, 3vw, 40px);
  border-right: 1px solid var(--border);
}

.hstat:last-child {
  border-right: none;
}

.hstat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: 1px;
  color: #fff;
  line-height: 1;
}

.hstat-n em {
  color: var(--r);
  font-style: normal;
}

.hstat-l {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wh3);
  margin-top: 3px;
}


/* ══════════════════════════════════
   FEATURE BAND
══════════════════════════════════ */

.fband {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--blk2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.fband-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(20px, 3vw, 36px) clamp(16px, 3vw, 32px);
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.fband-item:last-child {
  border-right: none;
}

.fband-item:hover {
  background: var(--blk3);
}

.fband-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--r);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.fband-item:hover::before {
  transform: scaleX(1);
}

.fband-icon {
  font-size: 26px;
  color: var(--r);
  line-height: 1;
}

.fband-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

.fband-desc {
  font-size: 11px;
  font-weight: 300;
  color: var(--wh2);
  line-height: 1.6;
}


/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */

#about {
  background: var(--blk);
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.about-left .sh {
  margin-bottom: 28px;
}

.about-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--wh2);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-body strong {
  color: var(--wh);
  font-weight: 600;
}

.ab-list {
  list-style: none;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ab-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--wh2);
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}

.ab-list li:last-child {
  border-bottom: none;
}

.ab-list li .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--r);
  min-width: 28px;
  line-height: 1;
}

.partner-band {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.partner-band span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wh3);
}

.partner-band img {
  height: 40px;
  opacity: 1;
  filter: brightness(2);
  transition: opacity 0.2s;
}


/* ══════════════════════════════════
   PRODUCTS / GALLERY
══════════════════════════════════ */

#gallery {
  background: var(--blk2);
}

.prod-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

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

.prod-card {
  background: var(--blk3);
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: border-color 0.25s;
}

.prod-card.featured {
  grid-row: span 2;
  aspect-ratio: unset;
}

.prod-card:hover {
  border-color: var(--r);
}

.prod-card:hover .prod-bg-num {
  opacity: 0.08;
}

.prod-card:hover .prod-hover {
  opacity: 1;
}

.prod-bg-num {
  position: absolute;
  bottom: -10px;
  right: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 8vw, 100px);
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  transition: opacity 0.3s;
}

.prod-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  padding-top: 0;
  transform: translateY(-30px);
}

.prod-ph-icon {
  opacity: 0.1;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-ph-icon svg,
.prod-ph-icon img {
  width: 300px;
  height: auto;
  object-fit: fill;
}

.prod-ph-icon svg {
  fill: #fff;
}

.prod-ph-txt {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wh3);
  opacity: 0.5;
  max-width: 100%;
  width: 100%;
  text-align: center;
}

.prod-ph-txt img {
  display: block;
  max-width: 100%;
  max-height: 360px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

.prod-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(208, 26, 26, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.prod-info {
  position: relative;
  z-index: 2;
  padding: 18px 20px;
  background: linear-gradient(transparent, rgba(13, 13, 13, 0.95) 25%);
  padding-top: 36px;
}

.prod-cat {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--r);
  margin-bottom: 4px;
}

.prod-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}

.prod-tag-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.prod-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--wh3);
  border: 1px solid var(--wh3);
  padding: 3px 8px;
}


/* ══════════════════════════════════
   WHY
══════════════════════════════════ */

#why {
  background: var(--blk);
}

.why-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
  margin-bottom: 56px;
}

.why-lead {
  font-size: 14px;
  font-weight: 300;
  color: var(--wh2);
  line-height: 1.9;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--border);
}

.why-card {
  background: var(--blk);
  padding: clamp(24px, 3vw, 36px) clamp(20px, 3vw, 32px);
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.why-card:hover {
  background: var(--blk2);
}

.why-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  letter-spacing: 2px;
  color: rgba(208, 26, 26, 0.07);
  line-height: 1;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.why-card:hover .why-card-num {
  color: rgba(208, 26, 26, 0.14);
}

.why-card h3 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--wh2);
  line-height: 1.75;
}

.why-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--r);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s;
}

.why-card:hover::after {
  transform: scaleY(1);
}

.why-cta {
  text-align: center;
  margin-top: 52px;
}


/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */

#contact {
  background: var(--blk2);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
}

.contact-l .sh {
  margin-bottom: 22px;
}

.contact-intro {
  font-size: 14px;
  font-weight: 300;
  color: var(--wh2);
  line-height: 1.85;
  margin-bottom: 32px;
}

.ci-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.ci-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(208, 26, 26, 0.1);
  border: 1px solid rgba(208, 26, 26, 0.25);
}

.ci-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--r);
}

.ci-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wh3);
  display: block;
  margin-bottom: 3px;
}

.ci-val {
  font-size: 14px;
  color: var(--wh);
  font-weight: 400;
}

.ci-val a {
  color: var(--wh);
  text-decoration: none;
  transition: color 0.2s;
}

.ci-val a:hover {
  color: var(--r);
}

/* Form */
.cform {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fg label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--wh3);
  margin-bottom: 6px;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: var(--blk3);
  border: 1px solid var(--border);
  border-bottom: 1px solid var(--wh3);
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  padding: 12px 14px;
  outline: none;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--r);
  border-bottom-color: var(--r);
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: var(--wh3);
}

.fg select option {
  background: var(--blk3);
}

.fsub {
  align-self: flex-start;
  background: var(--r);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'Exo 2', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.2s;
}

.fsub:hover {
  background: var(--r2);
}


/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */

footer {
  background: var(--blk);
  border-top: 1px solid var(--border);
  padding: clamp(40px, 6vw, 56px) var(--pad) clamp(24px, 3vw, 36px);
}

.ft-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.ft-brand img {
  height: 50px;
  width: auto;
  margin-bottom: 14px;
  display: block;
}

.ft-brand p {
  font-size: 12px;
  font-weight: 300;
  color: var(--wh3);
  max-width: 220px;
  line-height: 1.7;
}

.ft-col h4 {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--wh3);
  margin-bottom: 14px;
}

.ft-col ul {
  list-style: none;
}

.ft-col ul li {
  margin-bottom: 8px;
}

.ft-col ul li a {
  font-size: 12px;
  color: var(--wh2);
  text-decoration: none;
  transition: color 0.2s;
}

.ft-col ul li a:hover {
  color: var(--r);
}

.copyright {
  text-align: center;
  margin-top: 24px;
}

.copyright p {
  margin: 0;
  color: #fff;
  font-size: 14px;
}


/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */

@media (max-width: 1024px) {
  .about-wrap {
    grid-template-columns: 1fr;
  }

  .why-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 860px) {

  .nav-logo img {
    height: 30px;
  }

  /* Nav */
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  /* Hero stats */
  .hero-stats .hstat:last-child {
    display: none;
  }

  .hero-stats {
    position: static;
    margin-top: 48px;
  }

  .hstat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .hstat:last-child {
    border-bottom: none;
  }

  .hero-accent {
    display: none;
  }

  /* Feature band */
  .fband {
    grid-template-columns: 1fr 1fr;
  }

  .fband-item:nth-child(2) {
    border-right: none;
  }

  .fband-item:nth-child(3) {
    border-top: 1px solid var(--border);
  }

  .fband-item:nth-child(4) {
    border-top: 1px solid var(--border);
    border-right: none;
  }

  /* Partner band */
  .partner-band span {
    font-size: 13px;
  }

  .partner-band img {
    height: 30px;
  }

  /* Products */
  .prod-grid {
    grid-template-columns: 1fr 1fr;
  }

  .prod-card.featured {
    grid-row: auto;
    aspect-ratio: 4/3;
  }

  /* Hero */
  .hero-h1 {
    display: block;
  }

  .hero-h1::before {
    display: none;
  }

  .hero-h1 .hero-h1-sub {
    transform: none;
    text-align: left;
    display: block;
    margin-top: 6px;
  }

  .hero-h1 .hero-h1-sub::before,
  .hero-h1 .hero-h1-sub::after {
    display: none;
  }

  .hero-logo {
    width: 180px;
    margin-bottom: 10px;
  }

  .hero-inner {
    display: block;
  }

  .hero-side {
    justify-content: flex-start;
    margin-top: 42px;
  }

  .hero-card {
    padding: 28px 24px;
    min-height: 320px;
  }

  .hero-card-media__grid {
    min-height: 320px;
  }

  .hero-label {
    display: contents;
  }

  .hero-label::before,
  .hero-label::after {
    display: none;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .fband {
    grid-template-columns: 1fr;
  }

  .fband-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .fband-item:last-child {
    border-bottom: none;
  }

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

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

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

  .ft-top {
    flex-direction: column;
  }
}