@font-face {
  font-family: 'BlenderPro';
  src: url('../fonts/BlenderPro-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal;
}
@font-face {
  font-family: 'BlenderPro';
  src: url('../fonts/BlenderPro-Heavy.woff2') format('woff2');
  font-weight: 900; font-style: normal;
}
@font-face {
  font-family: 'BlenderPro';
  src: url('../fonts/BlenderPro-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal;
}
@font-face {
  font-family: 'BlenderPro';
  src: url('../fonts/BlenderPro-Book.woff2') format('woff2');
  font-weight: 400; font-style: normal;
}
@font-face {
  font-family: 'BlenderPro';
  src: url('../fonts/BlenderPro-Thin.woff2') format('woff2');
  font-weight: 300; font-style: normal;
}

:root {
  --blue: #27509B;
  --yellow: #FCE500;
  --dark: #1D1D25;
  --white: #FFFFFF;
  --light-gray: #F4F4F4;
  --blue-light: #3a6bbf;
  --blue-dark: #1a3d7a;
  --transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --stats-h: 90px;

  /* FONT SIZE BUMP — base size raised from browser default 16px to 17.5px.
     All rem/em values scale proportionally; clamp() values left intact
     since they already scale with viewport. */
  font-size: 17.5px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'BlenderPro', 'Arial Black', sans-serif;
  background: var(--dark);
  color: var(--dark);
  /* cursor: none; */
  overflow-x: hidden;
  font-size: 1rem;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* ── CURSOR ── */
.cursor {
  position: fixed; width: 12px; height: 12px;
  background: var(--yellow); border-radius: 50%;
  pointer-events: none; z-index: 10000;
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
  opacity: 0.4;
}
/* .cursor-follower {
  position: fixed; width: 40px; height: 40px;
  border: 2px solid var(--yellow); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
  mix-blend-mode: difference;
} */

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0; background: var(--dark);
  z-index: 9998;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'BlenderPro', sans-serif; font-weight: 900;
  font-size: clamp(3.2rem, 8vw, 6.4rem); color: var(--yellow);
  letter-spacing: -2px;
  animation: loaderPulse 1.2s ease-in-out infinite alternate;
}
.loader-bar-wrap { width: 200px; height: 3px; background: rgba(255,255,255,0.1); margin-top: 24px; border-radius: 2px; overflow: hidden; }
.loader-bar { height: 100%; background: var(--yellow); animation: loaderFill 2s ease forwards; }
@keyframes loaderPulse { from { opacity: 0.6; } to { opacity: 1; } }
@keyframes loaderFill { from { width: 0; } to { width: 100%; } }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 4%; display: flex; align-items: center; justify-content: space-between;
  height: 80px; transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(29,29,37,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
.nav-logo img { height: 44px; }
.nav-logo-fallback {
  display: none; font-family: 'BlenderPro', sans-serif; font-weight: 900;
  font-size: 1.9rem; color: var(--yellow); letter-spacing: -1px;
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'BlenderPro', sans-serif; font-weight: 500; font-size: 1rem;
  color: var(--white); letter-spacing: 1px; text-transform: uppercase;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--yellow); transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--yellow); color: var(--dark) !important; font-weight: 700 !important;
  padding: 10px 24px; letter-spacing: 1px; text-transform: uppercase; font-size: 0.9rem !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { background: var(--white) !important; transform: scale(1.04) !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 28px; height: 2px; background: var(--white); transition: all 0.3s ease; }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; inset: 0; top: 80px;
  background: rgba(29,29,37,0.98); backdrop-filter: blur(20px); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'BlenderPro', sans-serif; font-weight: 700;
  font-size: clamp(1.9rem, 5vw, 3.2rem); color: var(--white);
  text-transform: uppercase; letter-spacing: 2px; transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--yellow); }

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh; min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding-bottom: var(--stats-h);
}

.hero-poster {
  position: absolute; inset: 0;
  background: url('../images/MZITO-61.jpg') center/cover no-repeat; z-index: 0;
}
.hero-poster::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(29,29,37,0.25) 0%, rgba(29,29,37,0.75) 100%);
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.hero-video-wrap iframe {
  position: absolute; top: 50%; left: 50%;
  width: 177.78vh; height: 100vh; min-width: 100%; min-height: 56.25vw;
  transform: translate(-50%, -50%); border: none; opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-video-wrap iframe.loaded { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, rgba(29,29,37,0.80) 0%, rgba(39,80,155,0.25) 55%, rgba(29,29,37,0.75) 100%);
}

.hero-grain {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

.hero-pattern {
  position: absolute; inset: 0; z-index: 3; opacity: 0.05;
  background-image: repeating-linear-gradient(45deg, var(--yellow) 0, var(--yellow) 1.5px, transparent 0, transparent 50%);
  background-size: 36px 36px;
  animation: patternShift 22s linear infinite;
}
@keyframes patternShift { to { background-position: 400px 400px; } }

.hero-content {
  position: relative; z-index: 4;
  padding: 100px 6% 0;
  max-width: 1400px; width: 100%;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--yellow); color: var(--dark); font-weight: 700;
  font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase;
  padding: 8px 16px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  margin-bottom: 20px;
  opacity: 0; transform: translateY(30px);
  animation: heroReveal 0.8s forwards 2.5s;
}
.hero-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--dark); }

.hero-h1 {
  font-family: 'BlenderPro', sans-serif; font-weight: 900;
  font-size: clamp(3.2rem, 8.5vw, 7.5rem); line-height: 0.92;
  color: var(--white); text-transform: uppercase; letter-spacing: -2px;
  margin-bottom: 24px;
  opacity: 0; transform: translateY(40px);
  animation: heroReveal 1s forwards 2.7s;
}
.hero-h1 span { color: var(--yellow); display: block; }

.hero-sub {
  font-weight: 400; font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.82); max-width: 540px; line-height: 1.7;
  margin-bottom: 36px;
  opacity: 0; transform: translateY(30px);
  animation: heroReveal 0.8s forwards 3s;
}

.hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  opacity: 0; transform: translateY(30px);
  animation: heroReveal 0.8s forwards 3.2s;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--yellow); color: var(--dark);
  font-family: 'BlenderPro', sans-serif; font-weight: 700; font-size: 0.95rem;
  letter-spacing: 2px; text-transform: uppercase; padding: 16px 32px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all var(--transition); position: relative; overflow: hidden;
  border: none; line-height: normal;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--white); transform: translateX(-100%) skewX(-15deg); transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(100%) skewX(-15deg); }
.btn-primary:hover { transform: scale(1.04); }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid rgba(255,255,255,0.6); color: var(--white);
  font-family: 'BlenderPro', sans-serif; font-weight: 500; font-size: 0.95rem;
  letter-spacing: 2px; text-transform: uppercase; padding: 14px 28px; transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-outline-light { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }

.hero-scroll-hint {
  position: absolute; bottom: calc(var(--stats-h) + 28px); right: 6%; z-index: 4;
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 3px;
  text-transform: uppercase; writing-mode: vertical-rl;
  opacity: 0; animation: heroReveal 0.8s forwards 3.5s;
}
.scroll-line {
  width: 2px; height: 60px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}
@keyframes heroReveal { to { opacity: 1; transform: translateY(0); } }

.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
  height: var(--stats-h);
  background: rgba(15,15,20,0.92);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(252,229,0,0.18);
  display: flex; align-items: stretch; overflow: hidden;
}
.hero-stat {
  flex: 1; display: flex; align-items: center; justify-content: center;
  flex-direction: column; padding: 16px 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
  opacity: 0; animation: heroReveal 0.6s forwards;
  transition: background 0.3s;
}
.hero-stat:hover { background: rgba(252,229,0,0.06); }
.hero-stat:nth-child(1) { animation-delay: 3.4s; }
.hero-stat:nth-child(2) { animation-delay: 3.5s; }
.hero-stat:nth-child(3) { animation-delay: 3.6s; }
.hero-stat:nth-child(4) { animation-delay: 3.7s; }
.hero-stat:last-child { border-right: none; }
.stat-num {
  font-weight: 900; font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: var(--yellow); line-height: 1;
}
.stat-label {
  font-weight: 400; font-size: 0.72rem; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 5px;
}

/* ── SECTION SHARED ── */
section { position: relative; overflow: hidden; }
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 0.75rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 16px;
}
.section-label::before { content: ''; width: 32px; height: 3px; background: var(--yellow); }
.section-title {
  font-family: 'BlenderPro', sans-serif; font-weight: 900;
  font-size: clamp(2.1rem, 5vw, 4.2rem); text-transform: uppercase;
  line-height: 0.95; letter-spacing: -1px;
}
.section-title .accent { color: var(--blue); }
.section-title .accent-yellow { color: var(--yellow); }
.container { max-width: 1340px; margin: 0 auto; padding: 0 6%; }

/* ── TICKER ── */
.ticker { background: var(--yellow); padding: 14px 0; overflow: hidden; white-space: nowrap; }
.ticker-inner { display: inline-flex; animation: ticker 25s linear infinite; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 16px;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--dark); padding: 0 48px;
}
.ticker-item .dot {
  width: 8px; height: 8px; background: var(--blue);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); flex-shrink: 0;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════
   PRODUCTS — REDESIGN
   "Spec sheet" catalogue layout: filter tabs +
   stacked entries, each reading like a technical
   data sheet line item (code / name / specs).
═══════════════════════════════════════════ */
#products { background: var(--light-gray); padding: 100px 0 90px; }

.products-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; flex-wrap: wrap; gap: 24px;
}
.products-sub {
  font-weight: 400; font-size: 1.05rem; color: rgba(29,29,37,0.55);
  max-width: 480px; line-height: 1.7; margin-top: 16px;
}

/* Filter tabs */
.cat-tabs {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 36px; padding-bottom: 28px;
  border-bottom: 1px solid rgba(29,29,37,0.1);
}
.cat-tab {
  background: transparent;
  border: 1px solid rgba(29,29,37,0.15);
  color: rgba(29,29,37,0.55);
  font-family: 'BlenderPro', sans-serif; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 11px 22px; cursor: pointer;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: all var(--transition);
}
.cat-tab:hover { border-color: var(--blue); color: var(--blue); }
.cat-tab.active { background: var(--dark); color: var(--yellow); border-color: var(--dark); }

/* Catalogue entry list */
.cat-list { display: flex; flex-direction: column; gap: 14px; }

.cat-entry {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.cat-entry:hover {
  box-shadow: 0 18px 50px rgba(29,29,37,0.10);
  transform: translateY(-3px);
}
.cat-entry.is-hidden { display: none; }

.cat-entry-media {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
}
.cat-entry-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), filter 0.5s ease;
  filter: saturate(0.85);
}
.cat-entry:hover .cat-entry-media img {
  transform: scale(1.06); filter: saturate(1.1);
}
.cat-entry-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(39,80,155,0.18) 0%, transparent 60%);
  pointer-events: none;
}

.cat-entry-body {
  padding: 32px 36px;
  display: flex; flex-direction: column; justify-content: center;
}
.cat-entry-top {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 10px;
}
.cat-code {
  font-weight: 700; font-size: 0.7rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--blue);
}
.cat-flag {
  background: var(--yellow); color: var(--dark);
  font-weight: 700; font-size: 0.62rem; letter-spacing: 2px;
  text-transform: uppercase; padding: 4px 10px;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
.cat-entry-title {
  font-family: 'BlenderPro', sans-serif; font-weight: 900;
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  color: var(--dark); text-transform: uppercase;
  line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 12px;
}
.cat-entry-desc {
  font-weight: 400; font-size: 0.95rem; line-height: 1.7;
  color: rgba(29,29,37,0.6); margin-bottom: 18px; max-width: 640px;
}
.cat-specs {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px;
}
.cat-spec {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--blue);
  border: 1px solid rgba(39,80,155,0.25);
  padding: 6px 14px;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
.cat-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--dark);
  border-bottom: 2px solid var(--yellow); padding-bottom: 4px;
  width: fit-content; transition: color var(--transition), gap var(--transition);
}
.cat-entry:hover .cat-link { color: var(--blue); }
.cat-link svg { transition: transform var(--transition); }
.cat-entry:hover .cat-link svg { transform: translateX(4px); }

/* Strip stat below catalogue */
.cat-stripstat {
  margin-top: 36px;
  background: var(--blue);
  padding: 36px 40px;
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cat-stripstat::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(252,229,0,0.12) 0, rgba(252,229,0,0.12) 2px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, rgba(252,229,0,0.06) 0, rgba(252,229,0,0.06) 2px, transparent 0, transparent 50%);
  background-size: 30px 30px; animation: patternShift 15s linear infinite;
}
.cat-stripstat .big-num {
  position: relative; z-index: 1;
  font-weight: 900; font-size: clamp(3.2rem, 7vw, 5.5rem);
  color: var(--yellow); line-height: 1;
}
.cat-stripstat .big-num-plus { color: var(--white); font-size: 0.5em; }
.cat-stripstat p {
  position: relative; z-index: 1;
  font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.8); font-weight: 500; max-width: 320px;
}

@media (max-width: 900px) {
  .cat-entry { grid-template-columns: 1fr; }
  .cat-entry-media { aspect-ratio: 16/9; }
  .cat-entry-body { padding: 24px; }
}
@media (max-width: 600px) {
  .cat-tabs { gap: 8px; }
  .cat-tab { padding: 9px 16px; font-size: 0.7rem; }
  .cat-stripstat { padding: 28px 24px; flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ── ABOUT ── */
#about { background: var(--dark); padding: 100px 0; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-main { width: 100%; aspect-ratio: 4/5; object-fit: cover; position: relative; z-index: 1; }
.about-img-accent { position: absolute; width: 55%; aspect-ratio: 1; object-fit: cover; bottom: -30px; right: -30px; z-index: 2; border: 6px solid var(--dark); }
.about-badge {
  position: absolute; top: -20px; left: -20px; z-index: 3;
  width: 124px; height: 124px; background: var(--yellow);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center;
  animation: rotateBadge 15s linear infinite;
}
@keyframes rotateBadge { to { transform: rotate(360deg); } }
.badge-inner { animation: rotateBadge 15s linear infinite reverse; text-align: center; }
.badge-inner strong { display: block; font-size: 1.7rem; font-weight: 900; color: var(--dark); line-height: 1; }
.badge-inner span { font-size: 0.6rem; letter-spacing: 1px; text-transform: uppercase; color: var(--dark); font-weight: 700; }
.about-text { color: var(--white); }
.about-text .section-label { color: var(--yellow); }
.about-text .section-label::before { background: var(--yellow); }
.about-text .section-title .accent { color: var(--yellow); }
.about-text .section-title { color: var(--white); margin-bottom: 28px; }
.about-text p { font-weight: 400; font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.about-text p strong { color: var(--white); font-weight: 700; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.about-value {
  padding: 20px; border: 1px solid rgba(255,255,255,0.08);
  position: relative; overflow: hidden; transition: border-color var(--transition);
}
.about-value::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: var(--yellow); transform: scaleY(0); transition: transform var(--transition); transform-origin: top;
}
.about-value:hover { border-color: rgba(252,229,0,0.3); }
.about-value:hover::before { transform: scaleY(1); }
.value-icon { font-size: 1.5rem; margin-bottom: 8px; }
.value-title { font-weight: 700; font-size: 0.9rem; color: var(--yellow); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.value-text { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.5; font-weight: 400; }

/* ── PATTERN DIVIDER ── */
.pattern-divider { height: 120px; background: #000; position: relative; overflow: hidden; }
.pattern-divider::before { content: ''; position: absolute; inset: 0; background: rgba(39,80,155,0.7); }
.pattern-divider::after {
  content: 'BUILD TO LAST  ·  BUILD TO LAST  ·  BUILD TO LAST  ·  BUILD TO LAST  ·  BUILD TO LAST  ·';
  position: absolute; inset: 0; display: flex; align-items: center;
  font-weight: 900; font-size: clamp(1.3rem, 3vw, 2.1rem);
  color: rgba(255,255,255,0.15); white-space: nowrap; overflow: hidden;
  letter-spacing: 4px; text-transform: uppercase;
  animation: ticker 12s linear infinite; padding: 0 40px;
}

/* ── VALUES ── */
#values { background: var(--blue); padding: 100px 0; position: relative; overflow: hidden; }
#values .bg-pattern { position: absolute; inset: 0; opacity: 0.05; background-image: url('../images/MZITO-06.webp'); background-size: cover; mix-blend-mode: overlay; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.1); margin-top: 60px; }
.value-card { background: var(--dark); padding: 48px 36px; position: relative; overflow: hidden; transition: background var(--transition); }
.value-card::after { content: ''; position: absolute; width: 200px; height: 200px; background: var(--yellow); border-radius: 50%; bottom: -100px; right: -100px; opacity: 0; transition: opacity var(--transition), transform var(--transition); transform: scale(0.5); }
.value-card:hover { background: var(--blue-dark); }
.value-card:hover::after { opacity: 0.12; transform: scale(1); }
.value-num { font-weight: 900; font-size: 4.2rem; color: rgba(255,255,255,0.08); line-height: 1; margin-bottom: 16px; transition: color var(--transition); }
.value-card:hover .value-num { color: rgba(252,229,0,0.15); }
.value-card-title { font-weight: 700; font-size: 1.15rem; color: var(--yellow); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.value-card-text { font-weight: 400; font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7; }
.value-card-highlight { background: var(--yellow); }
.value-card-highlight .value-num { color: rgba(29,29,37,0.12); }
.value-card-highlight .value-card-title { color: var(--dark); }
.value-card-highlight .value-card-text { color: rgba(29,29,37,0.7); }
.value-card-highlight .value-card-text strong { color: var(--dark); }
.values-header { color: var(--white); }
.values-header .section-label { color: var(--yellow); }
.values-header .section-label::before { background: var(--yellow); }
.values-header .section-title { color: var(--white); }
.values-header .section-title .accent { color: var(--yellow); }

/* ── GALLERY ── */
#gallery { background: var(--dark); padding: 80px 0 0; overflow: hidden; }
.gallery-label { color: var(--white); padding: 0 6% 48px; }
.gallery-label .section-label { color: var(--yellow); }
.gallery-label .section-label::before { background: var(--yellow); }
.gallery-label .section-title { color: var(--white); }

.gallery-track-wrap {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image:         linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.gallery-track-wrap + .gallery-track-wrap { margin-top: 4px; }

.gallery-track {
  display: flex;
  will-change: transform;
}
.gallery-track .g-item {
  flex-shrink: 0;
  width: 360px; height: 240px;
  overflow: hidden; position: relative;
  margin-right: 4px;
}
.gallery-track .g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: saturate(0.75) brightness(0.92);
}
.gallery-track .g-item:hover img {
  transform: scale(1.07);
  filter: saturate(1.2) brightness(1.05);
}
.gallery-track .g-item .g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(29,29,37,0.7) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.35s;
  display: flex; align-items: flex-end; padding: 14px 16px;
}
.gallery-track .g-item:hover .g-overlay { opacity: 1; }
.gallery-track .g-item .g-label {
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--yellow); font-weight: 700;
}

.gallery-track[data-dir="ltr"]  { animation: marquee-ltr  var(--dur, 40s) linear infinite; }
.gallery-track[data-dir="rtl"]  { animation: marquee-rtl  var(--dur, 35s) linear infinite; }
.gallery-track:hover { animation-play-state: paused; }
@keyframes marquee-ltr { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-rtl { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ── CTA ── */
#cta { background: var(--yellow); padding: 80px 0; position: relative; overflow: hidden; }
.cta-pattern { position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(39,80,155,0.08) 0, rgba(39,80,155,0.08) 2px, transparent 0, transparent 50%); background-size: 30px 30px; animation: patternShift 20s linear infinite; }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-text .section-label { color: var(--blue); }
.cta-text .section-label::before { background: var(--dark); }
.cta-title { font-weight: 900; font-size: clamp(2.1rem, 5vw, 4.2rem); color: var(--dark); text-transform: uppercase; line-height: 0.95; letter-spacing: -1px; margin-top: 8px; }
.cta-accent { font-style: normal; color: var(--blue); }
.cta-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-dark { display: inline-flex; align-items: center; gap: 10px; background: var(--dark); color: var(--white); font-family: 'BlenderPro', sans-serif; font-weight: 700; font-size: 0.95rem; letter-spacing: 2px; text-transform: uppercase; padding: 16px 32px; clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%); transition: all var(--transition); }
.btn-dark:hover { background: var(--blue); transform: scale(1.04); }
.btn-blue { display: inline-flex; align-items: center; gap: 10px; background: var(--blue); color: var(--white); font-family: 'BlenderPro', sans-serif; font-weight: 700; font-size: 0.95rem; letter-spacing: 2px; text-transform: uppercase; padding: 16px 32px; clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%); transition: all var(--transition); }
.btn-blue:hover { background: var(--dark); transform: scale(1.04); }

/* ── FAQ ── */
#faq {
  background: var(--dark);
  padding: 100px 0;
  overflow: hidden;
}

.faq-intro { margin-bottom: 60px; }
.faq-intro .section-label { color: var(--yellow); }
.faq-intro .section-label::before { background: var(--yellow); }
.faq-intro .section-title { color: var(--white); }
.faq-intro .section-title .accent { color: var(--yellow); }
.faq-intro-sub {
  font-weight: 400;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  max-width: 540px;
  line-height: 1.7;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.faq-panel {
  position: sticky;
  top: 100px;
  background: var(--blue);
  padding: 48px 40px;
  overflow: hidden;
}
.faq-panel::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(252,229,0,0.07) 0, rgba(252,229,0,0.07) 2px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, rgba(252,229,0,0.03) 0, rgba(252,229,0,0.03) 2px, transparent 0, transparent 50%);
  background-size: 28px 28px;
  animation: patternShift 18s linear infinite;
}
.faq-panel-content { position: relative; z-index: 1; }
.faq-panel-eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 20px;
}
.faq-panel-heading {
  font-family: 'BlenderPro', sans-serif;
  font-weight: 900;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.faq-panel-heading span { color: var(--yellow); display: block; }
.faq-panel-text {
  font-weight: 400;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
}

.faq-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.faq-stat-cell {
  background: rgba(29,29,37,0.3);
  padding: 18px;
  text-align: center;
}
.faq-stat-num {
  font-family: 'BlenderPro', sans-serif;
  font-weight: 900;
  font-size: 2.1rem;
  color: var(--yellow);
  line-height: 1;
}
.faq-stat-lbl {
  font-size: 0.64rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-top: 4px;
}

.faq-panel-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--yellow); color: var(--dark);
  font-family: 'BlenderPro', sans-serif;
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 24px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background var(--transition), transform var(--transition);
}
.faq-panel-cta:hover { background: var(--white); transform: scale(1.03); }

.faq-accordion { display: flex; flex-direction: column; gap: 3px; }

.faq-item {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid transparent;
  transition: border-color var(--transition), background var(--transition);
  overflow: hidden;
}
.faq-item.active {
  border-left-color: var(--yellow);
  background: rgba(255,255,255,0.07);
}

.faq-q {
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer;
  user-select: none;
}
.faq-q-text {
  font-family: 'BlenderPro', sans-serif;
  font-weight: 700; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--white);
  line-height: 1.3;
}
.faq-item.active .faq-q-text { color: var(--yellow); }

.faq-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  background: rgba(255,255,255,0.08); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; font-weight: 300;
  transition: background var(--transition), transform var(--transition);
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
.faq-item.active .faq-icon {
  background: var(--yellow); color: var(--dark);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease;
  font-weight: 400; font-size: 0.92rem; line-height: 1.75;
  color: rgba(255,255,255,0.6);
  padding-left: 24px; padding-right: 24px;
}
.faq-item.active .faq-a {
  max-height: 320px;
  padding: 0 24px 22px;
}
.faq-a strong { color: rgba(255,255,255,0.9); font-weight: 700; }

.faq-divider {
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  padding: 20px 4px 8px;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.faq-divider:first-child { margin-top: 0; border-top: none; padding-top: 0; }

@media (max-width: 900px) {
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-panel { position: static; }
  .faq-panel-heading { font-size: 2.1rem; }
}

/* ── NEWS ── */
#news { background: var(--light-gray); padding: 100px 0; overflow: hidden; }

.news-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 56px; flex-wrap: wrap; gap: 20px;
}
.news-header .section-title .accent { color: var(--blue); }

.news-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3px;
}

.news-featured {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  background: var(--dark);
}
.news-featured img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), filter 0.5s ease;
  filter: brightness(0.75);
}
.news-featured:hover img {
  transform: scale(1.06);
  filter: brightness(0.6);
}
.news-featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(29,29,37,0.97) 0%, rgba(29,29,37,0.4) 55%, transparent 100%);
}
.news-featured-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 36px 32px;
}
.news-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--yellow); color: var(--dark);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  padding: 5px 12px;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  margin-bottom: 14px;
}
.news-tag.blue { background: var(--blue); color: var(--white); }
.news-title {
  font-family: 'BlenderPro', sans-serif;
  font-weight: 900; font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  color: var(--white); text-transform: uppercase;
  line-height: 1.05; letter-spacing: -0.5px; margin-bottom: 12px;
}
.news-meta {
  font-size: 0.74rem; color: rgba(255,255,255,0.45);
  letter-spacing: 1px; text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
}
.news-meta-sep { width: 3px; height: 3px; border-radius: 50%; background: currentColor; }
.news-excerpt {
  font-weight: 400; font-size: 0.9rem;
  color: rgba(255,255,255,0.65); line-height: 1.65;
  margin: 10px 0 18px;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.news-featured:hover .news-excerpt { max-height: 90px; }
.news-read-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--yellow);
  opacity: 0; transition: opacity var(--transition);
}
.news-read-link svg { transition: transform var(--transition); }
.news-featured:hover .news-read-link { opacity: 1; }
.news-featured:hover .news-read-link svg { transform: translateX(4px); }

.news-stack {
  display: flex; flex-direction: column; gap: 3px;
}
.news-card {
  position: relative; overflow: hidden;
  flex: 1; min-height: 0;
  cursor: pointer;
  background: var(--dark);
  display: flex; align-items: flex-end;
}
.news-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), filter 0.4s;
  filter: brightness(0.6) saturate(0.8);
}
.news-card:hover img { transform: scale(1.07); filter: brightness(0.45) saturate(1); }
.news-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(29,29,37,0.92) 0%, transparent 70%);
}
.news-card-content {
  position: relative; z-index: 1;
  padding: 20px 22px;
}
.news-card-content .news-title { font-size: 1.05rem; margin-bottom: 8px; }
.news-card-content .news-meta { margin-bottom: 0; }

.news-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 3px;
}
.news-mini {
  background: var(--white);
  padding: 28px 24px;
  border-top: 3px solid transparent;
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer;
}
.news-mini:hover { border-top-color: var(--yellow); background: #efefef; }
.news-mini .news-tag { margin-bottom: 10px; }
.news-mini .news-title {
  font-family: 'BlenderPro', sans-serif;
  font-weight: 700; font-size: 1rem;
  color: var(--dark); text-transform: uppercase;
  line-height: 1.2; letter-spacing: 0; margin-bottom: 8px;
}
.news-mini .news-meta { color: rgba(29,29,37,0.35); margin-bottom: 0; }
.news-mini p {
  font-size: 0.85rem; color: rgba(29,29,37,0.6);
  line-height: 1.6; margin-top: 8px; font-weight: 400;
}

@media (max-width: 900px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-stack { flex-direction: row; min-height: 200px; }
  .news-card { min-height: 200px; }
  .news-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .news-stack { flex-direction: column; }
}

/* ── CONTACT STRIP ── */
#contact-strip { background: var(--dark); padding: 60px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.contact-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.06); }
.contact-item { background: var(--dark); padding: 32px; display: flex; align-items: flex-start; gap: 16px; transition: background var(--transition); }
.contact-item:hover { background: rgba(39,80,155,0.15); }
.contact-icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--yellow); display: flex; align-items: center; justify-content: center; clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%); font-size: 1.15rem; }
.contact-label { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.4); font-weight: 700; margin-bottom: 4px; }
.contact-value { font-weight: 700; font-size: 0.95rem; color: var(--white); }
.contact-value a { color: var(--white); transition: color var(--transition); }
.contact-value a:hover { color: var(--yellow); }

/* ── FOOTER ── */
footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 60px 0 0; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.footer-brand img { height: 40px; margin-bottom: 20px; }
.footer-tagline { font-weight: 400; font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--white); transition: all var(--transition); clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%); }
.social-btn:hover { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }
.footer-col h4 { font-weight: 700; font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase; color: var(--yellow); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-weight: 400; font-size: 0.9rem; color: rgba(255,255,255,0.5); transition: color var(--transition); letter-spacing: 0.5px; }
.footer-col ul a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 6%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); font-weight: 400; }
.footer-bottom span { color: var(--yellow); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(50px); transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-accent { right: 0; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { font-size: 16px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-strip-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { min-width: 50%; }
  .about-img-accent { position: static; width: 100%; margin-top: 4px; }
  .about-badge { display: none; }
  .gallery-track .g-item { width: 240px; height: 170px; }
}