@import url('https://fonts.googleapis.com/css2?family=Familjen+Grotesk:wght@400;600;700&display=swap');

@font-face {
  font-family: 'Nasalization';
  src: url('../fonts/Nasalization.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: 'Familjen Grotesk', sans-serif;
  background: #000;
  color: #fff;
}

a {
  text-decoration: none;
  color: #fff;
}

ul {
  list-style: none;
}

/* Header/Navbar */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  height: 100px;
  padding: 0 30px;
}

/* Logo */
.logo {
  width: 250px;
  height: auto;
}

.logo-text {
  display: inline-block;
  font-size: 34px;
  letter-spacing: 2px;
  font-weight: 700;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* Desktop Menu */
.desktop-main-menu {
  margin-right: 50px;
}

.desktop-main-menu ul {
  display: flex;
}

.desktop-main-menu ul li {
  position: relative;
  margin-right: 20px;
  padding-bottom: 2px;
}

/* Menu item bottom border */
.desktop-main-menu ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: right center;
}

.desktop-main-menu ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
  transition-duration: 0.4s;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.8px;
}

.language-switch a {
  color: #aaa;
  transition: color 0.3s;
}

.language-switch a:hover,
.language-switch .is-active-lang {
  color: #fff;
}

/* Sections */
section {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-transform: uppercase;
}

.section-a,
.section-b,
.section-c,
.section-d,
.section-e,
.section-f,
.section-animate {
  height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

.section-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.section-animate .section-video {
  z-index: 0;
  filter: brightness(0.74) contrast(1.04);
}

.section-inner {
  position: absolute;
  bottom: 200px;
  left: 150px;
  max-width: 560px;
  z-index: 2;
}

.section-inner h4 {
  font-size: 22px;
  margin-bottom: 5px;
  font-weight: 300;
  animation: fadeInUp 0.5s ease-in-out;
}

.section-inner h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInUp 0.5s ease-in-out 0.2s;
  animation-fill-mode: both;
}

.section-inner a {
  animation: fadeInUp 0.5s ease-in-out 0.4s;
  animation-fill-mode: both;
}

/* Background images */
.section-a {
  background: #000;
}
.section-b {
  background-image: url('../img/placidplace-frequency-wave-.jpg');
}
.section-c {
  background-image: url('../img/section-c.webp');
}
.section-d {
  background-image: url('../img/section-d.webp');
}
.section-e {
  background-image: url('../img/section-e.webp');
}
.section-f {
  background-image: url('../img/section-f.webp');
}

.btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  background: transparent;
  color: #fff;
  text-align: center;
  min-width: 130px;
  padding: 15px 50px;
  margin-top: 10px;
  border: 2px solid #fff;
  text-transform: uppercase;
  font-weight: bold;
  overflow: hidden;
  z-index: 2;
}

.btn:hover span {
  color: #000;
}

.btn .hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  color: #000;
  z-index: -1;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn:hover .hover {
  transform: translateY(0);
}

.scroll-arrow {
  position: absolute;
  z-index: 2;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeBounce 5s infinite;
}

/* Footer */
footer {
  position: relative;
  padding: 56px 20px 40px;
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) auto;
  gap: 28px;
  align-items: start;
}

.footer-company {
  color: #d8d8d8;
  text-transform: none;
  font-size: 14px;
  line-height: 1.45;
}

.footer-company strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.footer-company p {
  margin: 0;
}

.footer-company p + p {
  margin-top: 4px;
}

.footer-social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  align-items: flex-start;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  opacity: 0.8;
  transform: translateX(2px);
}

.footer-social img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-social span {
  white-space: nowrap;
}

/* Hamburger Menu */
.hamburger {
  position: fixed;
  top: 40px;
  right: 20px;
  z-index: 10;
  cursor: pointer;
  width: 20px;
  height: 20px;
  background: none;
  border: none;
}

.hamburger-top,
.hamburger-middle,
.hamburger-bottom {
  position: absolute;
  width: 20px;
  height: 2px;
  top: 0;
  left: 0;
  background: #fff;
  transition: all 0.5s;
}

.hamburger-middle {
  transform: translateY(5px);
}

.hamburger-bottom {
  transform: translateY(10px);
}

/* Transition hamburger to X when open */
.open {
  transform: rotate(90deg);
}

.open .hamburger-top {
  transform: rotate(45deg) translateY(6px) translateX(6px);
}

.open .hamburger-middle {
  display: none;
}

.open .hamburger-bottom {
  transform: rotate(-45deg) translateY(6px) translateX(-6px);
}

/* Overlay */
.overlay-show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 3;
}

/* Stop body scroll */
.stop-scrolling {
  overflow: hidden;
}

/* Mobile menu */
.mobile-main-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 350px;
  height: 100%;
  background: #000;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Bring menu from right */
.show-menu {
  transform: translateX(0);
}

.mobile-main-menu ul {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  flex: 1;
  padding: 50px 50px 24px;
  width: 100%;
}

.mobile-main-menu ul li {
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
  border-bottom: 1px #555 dotted;
  width: 100%;
  text-align: right;
  padding-bottom: 8px;
}

.mobile-main-menu ul li a {
  color: #fff;
  transition: color 0.6s;
}

.mobile-main-menu ul li a:hover {
  color: #aaa;
}

.language-switch-mobile {
  display: none;
}

.language-switch-mobile span {
  color: #777;
}

.language-switch-mobile a {
  color: #aaa;
}

.language-switch-mobile .is-active-lang {
  color: #fff;
}

.mobile-menu-social {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  width: 100%;
  padding: 0 50px 34px;
}

.mobile-menu-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu-social a:hover,
.mobile-menu-social a:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

.mobile-menu-social img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* Inner Pages */
.bg-falcon-9 {
  background-image: url('../img/geralt-globe.jpg');
}

.bg-falcon-heavy {
  background-image: url('../img/falcon-heavy.webp');
}

.bg-dragon {
  background-image: url('../img/dragon.webp');
}

.bg-contact {
  background-image: url('../img/section-e.webp');
}

.section-animate {
  animation: fadeIn 2s ease-in-out;
  background-color: #030b18;
}

.section-animate::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 11, 24, 0.38) 0%, rgba(3, 11, 24, 0.22) 38%, rgba(3, 11, 24, 0.48) 100%);
  z-index: 1;
  pointer-events: none;
}

.section-animate-products {
  background: radial-gradient(circle at center, #050505 0%, #000 70%);
}

.section-animate-products::before {
  background: linear-gradient(
    180deg,
    rgba(3, 11, 24, 0.46) 0%,
    rgba(3, 11, 24, 0.30) 38%,
    rgba(3, 11, 24, 0.58) 100%
  );
}

.products-animation-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mix-blend-mode: screen;
}

#products-animation-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}

#animation-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}

#ui-animation {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(80,200,180,0.3);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  pointer-events: none;
  animation: fadeUp 2s 5s both;
  z-index: 2;
}

@keyframes fadeUp {
  from { opacity:0; transform: translateX(-50%) translateY(10px); }
  to   { opacity:1; transform: translateX(-50%) translateY(0); }
}

.section-inner-center {
  z-index: 2;
}

.products-hero-copy {
  z-index: 4;
}

.products-hero-copy h3,
.products-hero-copy p {
  opacity: 1 !important;
  visibility: visible;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.62);
}

.section-inner-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  text-align: center;
  width: min(90%, 980px);
  padding: 0 12px;
}

.section-inner-center h3 {
  font-size: clamp(2.4rem, 10vw, 6.25rem);
  margin-bottom: 15px;
  line-height: 1.04;
  animation: fadeInUp 0.5s ease-in-out;
}

.section-inner-center p {
  font-size: clamp(1rem, 2.7vw, 1.25rem);
  max-width: 760px;
  margin: 0 auto;
  animation: fadeInUp 0.5s ease-in-out 0.2s;
  animation-fill-mode: both;
}

/* Stats */
.stats {
  max-width: 960px;
  margin: 20px auto 50px;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  text-transform: uppercase;
}

.stats div span {
  font-size: 160px;
}

.stats div h4 {
  font-size: 24px;
  font-weight: 300;
}

.content-strip {
  max-width: 1120px;
  margin: 60px auto 30px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-transform: none;
  height: auto;
  align-items: stretch;
}

.content-inner {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 28px;
  min-height: 220px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.content-inner h3 {
  font-size: 28px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* Pixel art military icons */
.pixel-icon {
  position: relative;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  margin-right: 0.5em;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.pixel-icon-lg {
  position: relative;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  margin-right: 0.5em;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.content-inner p {
  color: #d9d9d9;
  line-height: 1.5;
}

.products-strip .content-inner {
  min-height: 420px;
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  isolation: isolate;
}

.products-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
  align-items: stretch;
  gap: 32px;
}

.image-card {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.image-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(0, 0, 0, 0.75) 95%);
}

.products-strip .image-card::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 18%, rgba(0, 0, 0, 0.86) 90%);
}

.image-card h3,
.image-card p {
  position: relative;
  z-index: 1;
}

.products-strip .image-card h3,
.products-strip .image-card p {
  max-width: 92%;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}

.products-strip .product-a {
  background-image: url('../img/ONECODEX-HR-Management-logo.png') !important;
  background-size: cover;
  background-position: center;
}

.products-strip .product-b {
  background-image: url('../img/PRISMAVISION1.png') !important;
  background-size: contain;
  background-position: center 38%;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.55);
}

.contact-layout {
  max-width: 1120px;
  margin: 60px auto 50px;
  padding: 0 20px;
  height: auto;
  text-transform: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 24px;
  height: 100%;
}

.contact-card h3 {
  margin-bottom: 8px;
  text-transform: uppercase;
}

.contact-card p {
  color: #d9d9d9;
}

.contact-form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 30px;
  display: grid;
  gap: 10px;
}

.contact-form h3 {
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid #4d4d4d;
  color: #fff;
  padding: 12px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  width: fit-content;
}

.hq-map-section {
  width: min(100%, 1520px);
  margin: 40px auto 80px;
  padding: 0 24px;
  text-transform: none;
}

.hq-map-header {
  margin-bottom: 24px;
}

.hq-map-header h3 {
  font-size: 42px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 10px;
}

.hq-map-header p {
  color: #c7c7c7;
  font-size: 16px;
}

.hq-map-frame {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 0 !important;
  background: radial-gradient(circle at 18% 8%, rgba(42, 67, 79, 0.4), rgba(4, 8, 12, 0.97));
  overflow: hidden;
  min-height: clamp(560px, 72vh, 760px);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(105, 172, 202, 0.24) inset,
    0 0 46px rgba(32, 120, 152, 0.12);
}

.hq-map-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 0.36) 100%),
    linear-gradient(125deg, rgba(10, 37, 49, 0.08), rgba(0, 0, 0, 0));
}

.hq-map-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 0 !important;
  pointer-events: none;
  z-index: 3;
  box-shadow: inset 0 0 0 1px rgba(137, 202, 228, 0.24);
}

.hq-map-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 16px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(6, 12, 16, 0.82);
  backdrop-filter: blur(4px);
}

.hq-map-badge-title {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e4f6ff;
  font-weight: 700;
}

.hq-map-badge-subtitle {
  font-size: 11px;
  color: #a8cddd;
}

.hq-map-canvas {
  position: relative;
  width: 100%;
  min-height: clamp(560px, 72vh, 760px);
  z-index: 4;
}

.hq-map-canvas .leaflet-pane,
.hq-map-canvas .leaflet-top,
.hq-map-canvas .leaflet-bottom {
  z-index: 5;
}

.hq-map-canvas .leaflet-control-zoom a {
  background: rgba(5, 11, 15, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.hq-map-canvas .leaflet-control-attribution {
  background: rgba(0, 0, 0, 0.55);
  color: #c8d3d9;
}

.hq-map-canvas .leaflet-control-attribution a {
  color: #9ec5d6;
}

.hq-map-canvas .leaflet-popup-content-wrapper,
.hq-map-canvas .leaflet-popup-tip {
  background: rgba(4, 10, 14, 0.92);
  color: #e9f7ff;
  border: 1px solid rgba(145, 208, 234, 0.4);
}

.hq-map-canvas .leaflet-popup-content {
  margin: 10px 12px;
  line-height: 1.4;
}

.hq-map-actions {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 6;
}

.hq-map-link {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(5, 10, 14, 0.78);
  color: #d9edf7;
  font-size: 12px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.hq-map-link:hover {
  background: rgba(24, 61, 79, 0.78);
  border-color: rgba(150, 210, 237, 0.8);
}

.hq-map-pin {
  background: transparent;
  border: 0;
}

.hq-map-pin span {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #b4e6ff;
  background: #2b8fba;
  box-shadow: 0 0 0 8px rgba(43, 143, 186, 0.25);
}

.hq-map-pin span::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(180, 230, 255, 0.75);
  transform: scale(1);
  opacity: 1;
  animation: hqPulse 1.8s ease-out infinite;
}

@keyframes hqPulse {
  to {
    transform: scale(2.6);
    opacity: 0;
  }
}

/* Animations */

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(140px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }

  40% {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-inner p,
.section-inner-center p,
.content-inner p,
.content-narrative p,
.content-narrative ul,
.content-manifesto p,
.content-manifesto ul li,
.contact-intro p,
.contact-card p,
.footer-company p,
.hq-map-header p,
.hq-map-fallback-card p {
  text-align: justify;
  text-align-last: left;
  text-justify: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
  word-spacing: normal;
  overflow-wrap: normal;
}

.content-inner h3,
.content-narrative h2,
.content-manifesto h2 {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  column-gap: 0.5em;
}

.content-inner h3 .pixel-icon,
.content-narrative h2 .pixel-icon-lg,
.content-manifesto h2 .pixel-icon-lg {
  margin-right: 0;
  margin-top: 0.08em;
}

/* Hero section subtitle */
.section-inner p {
  color: #d9d9d9;
  font-size: 17px;
  line-height: 1.6;
  margin-top: 6px;
  text-transform: none;
  max-width: 480px;
  animation: fadeInUp 0.5s ease-in-out 0.35s;
  animation-fill-mode: both;
}

/* Narrative text section (full-width) */
.content-narrative {
  max-width: 900px;
  margin: 50px auto 60px;
  padding: 0 40px;
  text-transform: none;
}

.content-narrative h2 {
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.content-narrative p {
  color: #d9d9d9;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 17px;
}

.content-narrative ul {
  list-style: disc;
  padding-left: 24px;
  color: #d9d9d9;
  line-height: 2.2;
  margin-bottom: 24px;
  font-size: 17px;
}

/* Manifesto section */
.content-manifesto {
  max-width: 900px;
  margin: 50px auto 60px;
  padding: 50px 40px;
  border-left: 3px solid rgba(255, 255, 255, 0.4);
  text-transform: none;
}

.content-manifesto h2 {
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.content-manifesto p {
  line-height: 2;
  margin-bottom: 18px;
  font-size: 17px;
  color: #d9d9d9;
}

.content-manifesto ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 22px;
}

.content-manifesto ul li {
  color: #d9d9d9;
  line-height: 2.4;
  padding-left: 20px;
  position: relative;
  font-size: 17px;
}

.content-manifesto ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #666;
}

/* Two-column content strip */
.content-strip.two-col {
  grid-template-columns: repeat(2, 1fr);
}

/* Contact page intro */
.contact-intro {
  max-width: 900px;
  margin: 50px auto 30px;
  padding: 0 40px;
  text-transform: none;
}

.contact-intro h2 {
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.contact-intro p {
  color: #d9d9d9;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 17px;
}

/* Media Queries */

@media (max-width: 960px) {
  /* Hide desktop menu */
  .desktop-main-menu {
    display: none;
  }

  .language-switch {
    display: none;
  }

  .mobile-main-menu {
    width: 320px;
  }

  .language-switch-mobile {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    border-bottom: none;
    padding-top: 10px;
  }

  .section-inner-center h3 {
    font-size: 75px;
  }

  .content-strip,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .products-strip {
    grid-template-columns: 1fr !important;
    max-width: 680px;
    gap: 24px;
    justify-content: center;
    justify-items: center;
  }

  .products-strip .content-inner {
    max-width: 680px;
    min-height: 360px;
    width: 100%;
  }

  .hq-map-section {
    width: min(100%, 100vw);
    margin: 0 auto 90px;
    padding: 0 18px;
  }

  .hq-map-header h3 {
    font-size: 34px;
  }

  .hq-map-frame,
  .hq-map-canvas {
    min-height: clamp(460px, 62vh, 620px);
  }

  .stats div span {
    font-size: 120px;
  }
}

@media (max-width: 600px) {
  .section-inner {
    bottom: 75px;
    left: 20px;
  }

  .section-inner h2 {
    font-size: 40px;
  }

  footer {
    padding: 44px 16px 34px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-company,
  .footer-social {
    align-items: center;
    text-align: center;
  }

  .footer-social a {
    justify-content: center;
  }

  .logo {
    width: 210px;
    margin: auto;
  }

  .logo-text {
    font-size: 28px;
  }

  .section-inner-center h3 {
    font-size: 50px;
  }

  .section-inner-center {
    width: min(94%, 680px);
    padding: 0 8px;
  }

  .section-inner-center p {
    font-size: 15px;
    line-height: 1.45;
  }

  /* Stats */
  .stats {
    flex-direction: column;
  }

  .stats div {
    margin-bottom: 20px;
  }

  .stats div span {
    font-size: clamp(62px, 20vw, 90px);
    line-height: 1;
  }

  .stats div h4 {
    font-size: 18px;
  }

  .mobile-main-menu {
    width: 100%;
  }

  .contact-form,
  .contact-card,
  .content-inner {
    padding: 20px;
  }

  .products-strip .content-inner {
    min-height: 320px;
    padding: 22px;
  }

  .products-strip {
    margin-top: 84px !important;
    gap: 16px !important;
    padding: 0 14px !important;
  }

  .hq-map-section {
    padding: 0 12px;
    margin: 0 auto 74px;
  }

  .hq-map-header h3 {
    font-size: 24px;
  }

  .hq-map-frame,
  .hq-map-canvas {
    min-height: 420px;
  }

  .hq-map-actions {
    left: 12px;
    bottom: 12px;
  }

  .hq-map-badge {
    top: 10px;
    left: 10px;
    padding: 8px 10px;
  }
}

@media (max-width: 420px) {
  .section-inner-center h3 {
    font-size: 40px;
  }

  .section-inner-center p {
    font-size: 14px;
  }

  .products-strip .content-inner {
    min-height: 280px;
    padding: 18px;
  }

  .content-strip {
    margin: 84px auto 56px;
    padding: 0 14px;
    gap: 14px;
  }
}
