/* ============================================================
   SYNERGY CUSTOM — 
   ============================================================ */
:root {
  --syn-red: #d92b2b;
  --syn-red-dk: #a81e1e;
  --syn-black: #f5f5f5;
  --syn-dark: #ffffff;
  --syn-dark2: #eaeaea;
  --syn-gray: #bbbbbb;
  --syn-muted: #555555;
  --syn-white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Barlow", sans-serif;
  background: var(--syn-white);
  color: #111111;
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.syn-navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1050;
	background: rgb(255 255 255 / 95%);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	transition: background 0.3s;
	padding: 0px 80px;
}

.syn-navbar.syn-scrolled {
  background: rgba(255, 255, 255, 0.99);
}

.syn-logo {
  padding: 10px 0;
  display: block;
}

.syn-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--syn-red);
  clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  flex-shrink: 0;
}

.syn-logo-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  letter-spacing: 4px;
}

.syn-nav-link {
  color: rgb(30, 30, 30) !important;
  font-size: 16px;
  letter-spacing: 1.5px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0 !important;
  position: relative;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.syn-nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--syn-red);
  transition: width 0.3s;
}

.syn-nav-link:hover,
.syn-nav-link.syn-active {
  color: #111 !important;
}

.syn-nav-link:hover::after,
.syn-nav-link.syn-active::after {
  width: 100%;
}

.syn-nav-link.dropdown-toggle::after {
  display: none;
}

.syn-arrow {
	display: inline-block;
	font-size: 14px;
	margin-left: 0px;
	transition: transform 0.3s;
}

.syn-nav-link.syn-open .syn-arrow {
  transform: rotate(180deg);
}

.syn-nav-contact {
  font-size: 14px;
  color: var(--syn-muted);
  line-height: 1.7;
  text-align: right;
}

.syn-nav-contact a {
  color: rgba(30, 30, 30, 0.8);
  text-decoration: none;
  font-weight: 600;
}

/* ── MEGA MENU ── */
.syn-mega {
  position: fixed;
  top: 103px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 2px solid var(--syn-red);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 1049;
  display: none;
  animation: synFadeDown 0.2s ease;
}

.syn-mega.syn-open {
  display: block;
}

@keyframes synFadeDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.syn-mega-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 56px;
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 48px;
}

.syn-mega-cats {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.syn-cat-btn {
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 11px 16px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #555555;
  border-left: 2px solid transparent;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.syn-cat-btn:hover {
  color: #111;
  border-left-color: rgba(217, 43, 43, 0.4);
}

.syn-cat-btn.syn-active {
  color: #111;
  border-left-color: var(--syn-red);
  background: rgba(217, 43, 43, 0.06);
}

.syn-cat-icon {
  font-size: 16px;
  width: 20px;
  color: rgba(30, 30, 30, 0.5);
}

.syn-panel {
  display: none;
}

.syn-panel.syn-active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #cccccc;
}

.syn-mega-item {
  background: #f7f7f7;
  padding: 22px 20px;
  text-decoration: none;
  color: #111;
  border-bottom: 2px solid transparent;
  transition: all 0.25s;
  display: block;
}

.syn-mega-item:hover {
  background: #ebebeb;
  border-bottom-color: var(--syn-red);
  color: #111;
}

.syn-mega-item-icon {
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
  color: var(--syn-red);
}

.syn-mega-item-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  line-height: 1.3;
}

.syn-mega-item-desc {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}

.syn-mega-foot {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding: 16px 56px;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

.syn-all-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--syn-red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.syn-all-link:hover {
  color: var(--syn-red);
  gap: 10px;
}

.syn-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1048;
  background: rgba(0, 0, 0, 0.5);
}

.syn-overlay.syn-open {
  display: block;
}

.syn-toggler {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #111;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.syn-toggler:hover {
  border-color: var(--syn-red);
}

/* Mobile menu */
.get-in-touch-wrap {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.syn-mob-menu {
  display: none;
}
@media (max-width: 1199px) {
  .syn-mob-menu {
    position: fixed;
    top: 107px;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: calc(100% - 107px);
    background: var(--syn-dark);
    z-index: 1051;
    overflow-y: auto;
    padding: 32px 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: block;
  }

  .syn-mob-menu.syn-open {
    transform: translateX(0);
  }

  /* overlay for mobile menu */
  .syn-mob-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1046;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .syn-mob-overlay.syn-open {
    display: block;
    opacity: 1;
  }

  /* submenu for mobile menu */
  .syn-mob-submenu {
    /* animated accordion using max-height */
    max-height: 0;
    overflow: hidden;
    padding-left: 8px;
    margin-bottom: 8px;
    transition: max-height 0.3s ease;
  }

  .syn-mob-submenu.open {
    max-height: 1000px; /* large enough to show content */
  }

  .syn-mob-subLink {
    display: block;
    color: rgba(30, 30, 30, 0.7);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    padding: 12px 0 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    transition: color 0.2s;
  }

  .syn-mob-subLink:hover {
    color: #111;
  }

  .syn-mob-arrow {
    float: right;
    transition: transform 0.3s;
  }

  .syn-mob-submenu .syn-mob-arrow.open {
    transform: rotate(90deg);
  }

  .syn-mob-link {
    display: block;
    color: rgba(30, 30, 30, 0.7);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    transition: color 0.2s;
  }

  .syn-mob-link:hover {
    color: #111;
  }

  /* ── MOBILE MEGA MENU OVERRIDES ── */
  .syn-mega {
    display: none !important;
  }
}

/* ── TICKER ── */
.syn-ticker {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: var(--syn-red);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 123px;
  padding-bottom: 14px;
}

.syn-ticker-inner {
  display: flex;
  white-space: nowrap;
  gap: 80px;
  animation: synTicker 24s linear infinite;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.syn-ticker-inner span {
  color: var(--syn-white);
}

@keyframes synTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── HERO ── */
.hero-bg-media {
	max-width: 700px;
	position: absolute;
	top: 10%;
	right: 0;
	border: 5px solid #686367;
	height: fit-content;
	width: 50%;
}

.hero-bg-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.syn-hero {
	position: relative;
	/* min-height: 100vh; */
	display: flex;
	align-items: center;
	margin-top: 0px;
	overflow: hidden;
	padding-top: 80px;
	padding-bottom: 80px;
}

.syn-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.syn-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px); */
  background-size: 60px 60px;
}

.syn-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.syn-glow-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(217, 43, 43, 0.12) 0%,
    #db2b2b1c 70%
  );
  top: -100px;
  left: 40%;
  animation: synGlow 5s ease-in-out infinite;
}

.syn-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(217, 43, 43, 0.171) 0%,
    transparent 70%
  );
  bottom: 10%;
  right: 10%;
  animation: synGlow 7s ease-in-out infinite reverse;
}

@keyframes synGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.syn-belt-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.07;
}

.syn-belt-line {
  position: absolute;
  left: 0;
  right: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 40px,
    rgba(0, 0, 0, 0.15) 40px,
    rgba(0, 0, 0, 0.15) 60px
  );
}

.syn-belt-line:nth-child(1) {
  top: 25%;
  height: 3px;
  animation: synBelt 3s linear infinite;
}

.syn-belt-line:nth-child(2) {
  top: 50%;
  height: 2px;
  animation: synBelt 5s linear infinite reverse;
  opacity: 0.6;
}

.syn-belt-line:nth-child(3) {
  top: 75%;
  height: 3px;
  animation: synBelt 4s linear infinite;
}

@keyframes synBelt {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 100px 0;
  }
}

.syn-play-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.syn-play-ring {
  width: 88px;
  height: 88px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
}

.syn-play-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--syn-red);
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.4s;
}

.syn-play-ring:hover {
  border-color: var(--syn-red);
  background: rgba(217, 43, 43, 0.1);
}

.syn-play-ring:hover::before {
  transform: scale(1.15);
  opacity: 0.5;
}

.syn-play-tri {
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid rgba(30, 30, 30, 0.5);
  margin-left: 5px;
}

.syn-play-label {
  font-size: 10px;
  color: rgba(30, 30, 30, 0.4);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.syn-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.97) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.15) 100%
  ); */
}

.syn-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.syn-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffc6c6;
  padding: 5px 16px;
  margin-bottom: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.syn-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  animation: synBlink 1.2s ease infinite;
}

@keyframes synBlink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.syn-hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(63px, 9.5vw, 100px);
  line-height: 0.88;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.syn-hero-title .syn-red {
  color: var(--syn-red);
}

.syn-hero-sub {
  font-size: 18px;
  color: rgb(60, 60, 60);
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
}

.syn-hero-stats {
  position: absolute;
  right: 80px;
  bottom: 80px;
  z-index: 3;
  display: flex;
  gap: 28px;
  align-items: flex-end;
}

.syn-stat-n {
  font-family: "Bebas Neue", sans-serif;
  font-size: 52px;
  color: var(--syn-red);
  line-height: 1;
  display: block;
}

.syn-stat-l {
  font-size: 10px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 600;
}

.syn-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.syn-scroll-cue span {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(244, 6, 6, 0.819);
  font-weight: 400;
}

.syn-scroll-line {
  width: 1px;
  height: 52px;
  background: rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.syn-scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--syn-red);
  animation: synScrollAnim 2s ease-in-out infinite;
}

@keyframes synScrollAnim {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

/* ── BUTTONS ── */
.syn-btn-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--syn-red);
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
  border: none;
  cursor: pointer;
}

.syn-btn-red:hover {
  background: var(--syn-red-dk);
  transform: translateY(-2px);
  color: #fff;
}

.syn-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #111;
  text-decoration: none;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  background: transparent;
}

.syn-btn-ghost:hover {
  border-color: rgba(217, 43, 43, 0.6);
  background: rgba(217, 43, 43, 0.07);
  color: #111;
}

.syn-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--syn-red);
  text-decoration: none;
  padding: 16px 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  white-space: nowrap;
}

.syn-btn-white:hover {
  background: var(--syn-black);
  color: #fff;
}

/* ── SECTION COMMONS ── */
.syn-section {
  padding: 100px 0;
}

.syn-section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--syn-red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.syn-section-tag::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--syn-red);
}

.syn-section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.93;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.syn-section-desc {
  font-size: 16px;
  color: rgb(106 106 106);
  line-height: 1.9;
  font-weight: 300;
  max-width: 420px;
}

/* ── PRODUCTS ── */
.img-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.syn-products-bg {
  background: var(--syn-dark);
}

.syn-prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--syn-gray);
}

.syn-p-card {
  background: #e9e9e9;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.35s;
}

.syn-p-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: #000000;
  transition: width 0.4s;
}

.syn-p-card:hover {
  background: #d83137;
}

.syn-p-card:hover::after {
  width: 100%;
}

.syn-p-card.syn-feat {
  background-color: var(--syn-red);
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px;
}

.syn-p-card.syn-feat::after {
  background: #fff;
}

.syn-p-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 80px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 12px;
  right: 20px;
  pointer-events: none;
}

.syn-p-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 18px;
  transition: border-color 0.3s;
}

.syn-p-card:hover .syn-p-icon {
  border-color: rgb(255 255 255);
  color: #fff;
}
.syn-p-card.syn-feat .syn-p-icon {
  width: 60px;
  height: 60px;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  font-size: 24px;
  margin-bottom: 32px;
}

.syn-p-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.syn-p-card.syn-feat .syn-p-name {
  font-size: 28px;
  margin-bottom: 14px;
}

.syn-p-desc {
  font-size: 16px;
  color: rgb(80, 80, 80);
  line-height: 1.75;
  font-weight: 300;
}

.syn-p-card.syn-feat .syn-p-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 28px;
}

.syn-p-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  margin-top: 18px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s;
}

.syn-p-card:hover .syn-p-link {
  opacity: 1;
  transform: translateX(0);
}

.syn-p-card.syn-feat .syn-p-link {
  opacity: 1;
  transform: translateX(0);
}

.syn-prdct-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

.syn-prdct-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.syn-p-card:hover .syn-prdct-img {
  opacity: 0.02;
}

.syn-p-card:hover .syn-p-name,
.syn-p-card:hover .syn-p-desc,
.syn-p-card:hover .syn-p-link {
  color: var(--syn-white);
}
/* ── INDUSTRIES ── */
.syn-ind-bg {
  background: var(--syn-black);
}

.syn-ind-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #cccccc;
  margin-top: 56px;
}

.syn-ind-card {
  height: 380px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.syn-ind-image {
  position: absolute;
  inset: 0;
  background: var(--syn-dark2);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  filter: brightness(0.35) grayscale(0.7);
}

.syn-ind-card:hover .syn-ind-image {
  transform: scale(1.07);
  filter: brightness(0.45) grayscale(0.3);
}

.syn-ind-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(219, 0, 0, 0.92) 0%,
    transparent 55%
  );
}

.syn-ind-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.syn-ind-tag {
  font-size: 12px;
  color: var(--syn-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.syn-ind-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--syn-white);
}

.syn-ind-arr {
  width: 38px;
  height: 38px;
  border: 1px solid rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s;
}

.syn-ind-card:hover .syn-ind-arr {
  opacity: 1;
  transform: translateY(0);
  border-color: var(--syn-white);
  color: var(--syn-white);
}

/* ── SERVICES ── */
.syn-services-bg {
  background: var(--syn-dark);
}

.syn-srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.syn-srv-card {
  background: #f0f0f0;
  padding: 34px 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.syn-srv-card:hover {
  border-color: rgba(217, 43, 43, 0.25);
  transform: translateY(-3px);
}

.syn-srv-n {
  font-size: 10px;
  color: var(--syn-red);
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 18px;
}

.syn-srv-t {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.syn-srv-d {
  font-size: 13px;
  color: rgba(30, 30, 30, 0.5);
  line-height: 1.8;
  font-weight: 300;
}

.syn-srv-l {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--syn-red);
  text-decoration: none;
  margin-top: 22px;
  transition: gap 0.2s;
}

.syn-srv-l:hover {
  gap: 10px;
}

/* ── VALUES ── */
.syn-values-bg {
  background: var(--syn-black);
}

.syn-val-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #cccccc;
  margin-top: 56px;
}

.syn-val-card {
  background: #f5f5f5;
  padding: 52px 40px;
  text-align: center;
}

.syn-val-ico {
  font-size: 40px;
  display: block;
  margin-bottom: 24px;
  color: var(--syn-red);
}

.syn-val-t {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.syn-val-d {
  font-size: 16px;
  color: rgb(80, 80, 80);
  line-height: 1.85;
  font-weight: 300;
}

/* ── CUSTOMERS ── */
.syn-customers-bg {
  background: var(--syn-dark);
}

.syn-logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: #cccccc;
}

.syn-logo-cell {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: background 0.3s;
}

.syn-logo-cell span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(30, 30, 30, 0.4);
  text-align: center;
  transition: color 0.3s;
  line-height: 1.3;
}

.syn-logo-cell:hover span {
  color: rgba(30, 30, 30, 0.75);
}

/* ── PARTNERS ── */
.syn-partners-bg {
  background: var(--syn-black);
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.syn-part-logos {
  display: flex;
  gap: 2px;
  background: #cccccc;
}

.syn-part-logo {
  background: #ededed;
  padding: 36px 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.syn-pn {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}

.syn-ps {
  font-size: 9px;
  color: var(--syn-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── CTA BAND ── */
.syn-cta-band {
  background: var(--syn-red);
  padding: 64px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.syn-cta-band h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  margin: 0;
}

.syn-cta-band p {
  font-size: 16px;
  opacity: 0.7;
  margin-top: 8px;
  font-weight: 300;
  margin-bottom: 0;
  color: var(--syn-white);
}

/* ── CONTACT ── */
.syn-contact-bg {
  background: var(--syn-dark);
}

.syn-contact-info {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.syn-contact-info a {
  color: var(--syn-muted);
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
  font-weight: 500;
}

.syn-contact-info a:hover {
  color: #111;
}

.syn-field {
  width: 100%;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 13px 16px;
  color: #111;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 16px;
}

.syn-field:focus {
  border-color: rgba(217, 43, 43, 0.4);
  background: rgba(0, 0, 0, 0.05);
}

.syn-field::placeholder {
  color: rgba(30, 30, 30, 0.3);
}

textarea.syn-field {
  height: 130px;
  resize: none;
}

/* ── FOOTER ── */
.syn-footer {
  background: #f0f0f0;
  padding: 72px 0 36px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.syn-foot-brand p {
  font-size: 14px;
  color: var(--syn-muted);
  line-height: 1.85;
  margin-top: 16px;
  font-weight: 400;
}

.syn-foot-col h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  color: rgba(30, 30, 30, 0.7);
  margin-bottom: 20px;
}

.syn-foot-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.syn-foot-col a {
  font-size: 15px;
  color: var(--syn-muted);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}

.syn-foot-col a:hover {
  color: var(--syn-red-dk);
}

.syn-foot-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 28px;
  margin-top: 56px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.syn-foot-bottom p {
  font-size: 12px;
  color: var(--syn-muted);
  font-weight: 300;
  margin: 0;
}

/* ── REVEAL ── */
.syn-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.syn-reveal.syn-vis {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1199px) {
  .syn-desktop-links,
  .syn-nav-contact {
    display: none !important;
  }

  .syn-toggler {
    display: flex !important;
  }

  .syn-hero-content {
    padding: 0 24px 60px;
  }



  .syn-section {
    padding: 64px 0;
  }

  .syn-prod-grid,
  .syn-srv-grid,
  .syn-val-grid {
    grid-template-columns: 1fr;
  }

  .syn-ind-grid {
    grid-template-columns: 1fr;
  }

  .syn-logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .syn-cta-band {
    padding: 48px 24px;
  }

  .syn-mega-inner {
    grid-template-columns: 1fr;
  }

  .syn-panel.syn-active {
    grid-template-columns: repeat(2, 1fr);
  }

  .syn-mega,
  .syn-mega-foot {
    padding-left: 24px;
    padding-right: 24px;
  }

  .syn-mega-inner {
    padding: 28px 24px;
  }
}

@media (max-width: 576px) {
  .syn-logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .syn-panel.syn-active {
    grid-template-columns: 1fr;
  }
}
.syn-foot-col {
  width: 21.666667%;
}

@media (max-width: 1200px) {
  .hero-bg-media {
    top: 6%;
    max-width: 500px;
  }
  .syn-navbar {
    padding: 0px 20px;
  }
}