/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --nav-height: 72px;
  --bg:      #060504;
  --bg2:     #080604;
  --bg3:     #0C0906;
  --card:    #080604;
  --gold:    #C4902A;
  --gold-lt: #D4A840;
  --white:   #EDE3D0;
  --muted:   rgba(237,227,208,.65);
  --muted2:  rgba(237,227,208,.65);
  --border:  rgba(196,144,42,.06);
  --border2: rgba(196,144,42,.15);
}

html { scroll-behavior: smooth; scroll-snap-type: y proximity; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── SECTION LABEL ── */
.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(196,144,42,.85);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: rgba(196,144,42,.25);
  flex-shrink: 0;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--white);
}

h2 { font-size: clamp(2rem, 3.5vw, 3.4rem); margin-bottom: 32px; margin-top: 8px; }
h2 em { color: #C4902A; font-style: italic; }
h3 { font-size: clamp(1.6rem, 2.5vw, 2.4rem); }

p {
  font-size: 1rem;
  color: rgba(237,227,208,.85);
  font-weight: 300;
  line-height: 2;
  margin-bottom: 20px;
  letter-spacing: .02em;
}

strong { color: rgba(237,227,208,.85); font-weight: 400; }

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  background: #C4902A;
  color: #060504;
  padding: 16px 36px;
  border: 1px solid #C4902A;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-primary:hover { background: #D4A840; }

.btn-outline {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: transparent;
  color: rgba(237,227,208,.85);
  padding: 16px 36px;
  border: 1px solid rgba(196,144,42,0.4);
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-outline:hover { border-color: #C4902A; color: #EDE3D0; }

.btn-dark {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  background: #060504;
  color: #C4902A;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.btn-dark:hover { opacity: .85; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-height); display: flex; align-items: center;
  justify-content: space-between; padding: 0 56px;
  background: rgba(6,5,4,.97);
  border-bottom: 1px solid rgba(196,144,42,.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: background .5s, border-color .5s;
  opacity: 0;
  animation: navFadeIn 1s ease 0.1s forwards;
}
nav.scrolled {
  background: rgba(6,5,4,.99);
  border-bottom-color: rgba(196,144,42,.14);
}
@keyframes navFadeIn {
  to { opacity: 1; }
}
.nav-logo img {
  height: 64px;
  display: block;
}

.nav-logo-switcher {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-logo-arrow {
  background: transparent;
  border: none;
  color: var(--gold);
  padding: 8px 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.nav-logo-arrow svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}

.nav-logo-switcher:hover .nav-logo-arrow svg,
.nav-logo-switcher.open .nav-logo-arrow svg {
  transform: rotate(180deg);
}

.nav-logo-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 246px;
  padding: 20px 24px;
  display: none;
  z-index: 1000;
}

.nav-logo-dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-logo-switcher:hover .nav-logo-dropdown,
.nav-logo-switcher.open .nav-logo-dropdown {
  display: block;
}

.nav-logo-dropdown img {
  width: 198px;
  height: 110px;
  display: block;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,.75));
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(237,227,208,.85);
  text-decoration: none;
  transition: color .3s;
}
.nav-links a:hover,
.nav-links a.active { color: #C4902A; }
.nav-links .lang {
  font-size: 13px;
  color: rgba(196,144,42,.75);
  border-left: 1px solid rgba(196,144,42,.1);
  padding-left: 36px;
}
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-cta {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  color: #C4902A;
  padding: 8px 16px;
  border: 1px solid #C4902A;
  cursor: pointer;
  transition: background .2s, color .2s;
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover { background: #C4902A; color: #060504; opacity: 1; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(237,227,208,.7);
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  overflow-y: auto;
  padding: 88px 24px 32px;
}
.nav-mobile-overlay.open { display: flex; }
.nav-mobile-overlay a {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(237,227,208,.85);
  transition: color .2s;
}
.nav-mobile-overlay a:hover { color: #C4902A; }

/* ── FADE-UP ── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ── HERO ANIMATIONS ── */
.hero-label, .hero-h1, .hero-perex, .hero-btns {
  opacity: 0;
  transform: translateY(16px);
}
.hero-label.animate, .hero-h1.animate,
.hero-perex.animate, .hero-btns.animate {
  transition: opacity 1s ease, transform 1s ease;
  opacity: 1;
  transform: translateY(0);
}
.hero-h1.animate {
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(196,144,42,.18), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.18; transform: scaleY(1); }
  50%       { opacity: 0.5;  transform: scaleY(1.2); }
}


/* ── HERO VIDEO BACKGROUND ── */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

/* ── EAGLE BACKGROUND ICON ── */
.eagle-feather {
  opacity: 0;
  transition: opacity 0.5s ease calc(var(--feather-i, 0) * 50ms);
}
.eagle-feather.visible {
  opacity: 1;
  transition: opacity 0.3s ease 0s;
}

.eagle-bg-icon {
  position: sticky;
  top: 60px;
  left: 0;
  right: 0;
  display: block;
  width: 88vw;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 88%, transparent 100%);
}

/* ── HERO H1 ACCENT ── */
.hero-h1-accent {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 2vw, 24px);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
}

/* ── PAGE HERO (subpages) ── */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 72px 56px 72px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,5,4,.35) 0%, rgba(6,5,4,.08) 35%, rgba(6,5,4,.7) 72%, rgba(6,5,4,1) 100%),
    linear-gradient(90deg, rgba(6,5,4,.72) 0%, rgba(6,5,4,.28) 45%, transparent 72%),
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 80px,
      rgba(196,144,42,.025) 80px,
      rgba(196,144,42,.025) 81px
    ),
    var(--bg2);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.page-hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -.015em;
  color: var(--white);
  margin-top: 12px;
  margin-bottom: 20px;
}
.page-hero-content p {
  font-size: .9rem;
  font-weight: 300;
  color: rgba(237,227,208,.85);
  max-width: 520px;
  line-height: 2;
  letter-spacing: .02em;
  margin-bottom: 0;
}

.page-hero-jobs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(196,144,42,.15);
}
.page-hero-jobs-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--white);
  margin: 0;
}
.page-hero-jobs-text em { color: var(--gold); font-style: italic; }

/* ── JOB TYPE CARDS (career page) ── */
.job-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(196,144,42,.06);
  border: 1px solid rgba(196,144,42,.06);
  margin-bottom: 40px;
}
.job-type-card {
  position: relative;
  display: block;
  background: var(--bg);
  padding: 32px 28px;
  cursor: pointer;
  transition: background .3s;
}
.job-type-card:hover { background: var(--bg3); }
.job-type-card input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.job-type-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: -.01em;
  color: var(--white);
  display: block;
  margin-bottom: 10px;
  transition: color .3s;
}
.job-type-text {
  font-size: .85rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  display: block;
}
.job-type-card:has(input:checked) {
  background: var(--bg3);
  box-shadow: inset 0 0 0 1px var(--gold);
}
.job-type-card:has(input:checked) .job-type-name { color: var(--gold); }

/* ── CONTENT SECTIONS ── */
.content-section {
  padding: 80px 56px;
  max-width: 1200px;
  margin: 0 auto;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ── SERVICE LIST ── */
.service-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin-top: 32px;
}
.service-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
  font-size: .85rem;
  font-weight: 300;
  color: rgba(237,227,208,.85);
  line-height: 1.8;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(196,144,42,.06);
  transition: background .2s;
  letter-spacing: .02em;
}
.service-list li:first-child { border-top: 1px solid rgba(196,144,42,.06); }
.service-list li:hover { background: rgba(196,144,42,.03); }
.service-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #C4902A;
  flex-shrink: 0;
  margin-top: 10px;
}

/* ── SECTION HEADER ── */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.section-header-left h2 { margin-top: 8px; }

/* ── VALUES SECTION ── */
.values-section {
  background: var(--bg2);
  padding: 96px 56px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(196,144,42,.06);
  border: 1px solid rgba(196,144,42,.06);
  margin-top: 56px;
}
.value-card {
  background: var(--bg);
  padding: 48px 36px;
  transition: background .3s;
}
.value-card:hover { background: var(--bg3); }
.value-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.value-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 12px;
}
.value-text {
  font-size: .85rem;
  color: rgba(237,227,208,.85);
  font-weight: 300;
  line-height: 1.85;
}

/* ── CTA SECTION ── */
.cta-section { background: #C4902A; padding: 72px 56px; }
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
.cta-h2, .cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  color: #060504;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.cta-right p {
  font-size: .88rem;
  color: rgba(6,5,4,.55);
  font-weight: 300;
  line-height: 1.9;
  max-width: 340px;
  margin-bottom: 24px;
  letter-spacing: .02em;
}
.cta-section .btn-dark {
  padding: 18px 48px;
  font-size: 14px;
  letter-spacing: 0.18em;
}

/* ── FOOTER ── */
footer {
  background: #040302;
  border-top: 1px solid rgba(196,144,42,.06);
  padding: 64px 56px 36px;
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(196,144,42,.06);
}
.footer-logo {
  width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .4;
  margin-bottom: 20px;
  display: block;
}
.footer-about {
  font-size: 0.9rem;
  color: rgba(237,227,208,.75);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 20px;
}
.footer-contact {
  font-size: 0.9rem;
  color: rgba(237,227,208,.75);
  line-height: 1.9;
}
.footer-contact strong {
  color: #C4902A;
  font-weight: 400;
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
}
.footer-company-details {
  font-size: 13px;
  color: var(--muted2);
  margin-top: 8px;
  line-height: 1.8;
}
.footer-company-details + .footer-company-details {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(196,144,42,.08);
}
.footer-contact strong.footer-company-name {
  display: block;
  margin-bottom: 2px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(237,227,208,.85);
}
.footer-col-title {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(237,227,208,.75);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(237,227,208,.75);
  text-decoration: none;
  transition: color .2s;
  font-weight: 300;
}
.footer-links a:hover { color: #C4902A; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 12.5px;
  letter-spacing: .12em;
  color: rgba(237,227,208,.75);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(237,227,208,.75); text-decoration: none; }
.footer-bottom a:hover { color: rgba(196,144,42,.75); }
.footer-bottom-links { display: flex; gap: 24px; }

/* ── SERVICES OVERVIEW PAGE ── */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.services-full-grid .service-full-card {
  grid-column: span 2;
}
.service-full-card {
  background: var(--bg2);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  text-decoration: none;
  color: inherit;
}
.service-full-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: #C4902A;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.service-full-card:hover { background: var(--bg3); }
.service-full-card:hover::after { transform: scaleX(1); }
.service-full-card .service-icon {
  width: 64px; height: 64px;
  border: 1px solid rgba(196,144,42,.15);
  display: flex; align-items: center; justify-content: center;
}
.service-full-card .service-icon svg {
  width: 32px; height: 32px;
  stroke: #C4902A; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.service-full-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.4;
  margin-top: 20px;
  margin-bottom: 12px;
}
.service-full-card p {
  font-size: 0.95rem;
  color: rgba(237,227,208,.85);
  font-weight: 300;
  line-height: 1.85;
  flex: 1;
  margin-bottom: 0;
}
.service-link {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(196,144,42,.75);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .3s;
}
.service-full-card:hover .service-link { color: #C4902A; }

/* ── LOGOS GRID (referencie) ── */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: transparent;
}
.logo-cell {
  background: transparent;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: background .3s;
}
.logo-cell:hover { background: rgba(196,144,42,.04); }
.logo-cell img {
  width: 100%;
  max-width: 160px;
  height: 80px;
  object-fit: contain;
  background: transparent;
  filter: grayscale(100%) brightness(1.1);
  opacity: 0.75;
  transition: opacity .3s ease, filter .3s ease, transform 0.3s ease;
  display: block;
}
.logo-cell:hover img {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
  transform: scale(1.1);
}
.logo-cell img[src*="medusa-group"],
.logo-cell img[src*="sassy-group"] {
  filter: invert(1) grayscale(100%) brightness(1.1);
}
.logo-cell:hover img[src*="medusa-group"],
.logo-cell:hover img[src*="sassy-group"] {
  filter: invert(1) grayscale(0%) brightness(1);
}
.logo-cell .fallback {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(237,227,208,.65);
  text-align: center;
  line-height: 1.5;
}

/* ── REFS FULL (referencie) ── */
.refs-full { padding: 80px 56px; max-width: 1200px; margin: 0 auto; }
.refs-full-section { margin-bottom: 64px; }
.refs-full-section h3 { margin-bottom: 32px; margin-top: 8px; }
.refs-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(196,144,42,.06);
  border: 1px solid rgba(196,144,42,.06);
}
.ref-item {
  background: var(--bg2);
  padding: 20px 24px;
  font-size: 0.95rem;
  color: rgba(237,227,208,.85);
  font-weight: 300;
  transition: background .2s, color .2s;
  letter-spacing: .02em;
  position: relative;
  overflow: hidden;
}
.ref-item::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(
    90deg,
    rgba(196,144,42,0.0) 0%,
    rgba(196,144,42,0.7) 25%,
    rgba(196,144,42,0.0) 50%,
    rgba(196,144,42,0.7) 75%,
    rgba(196,144,42,0.0) 100%
  );
  background-size: 300% 100%;
  animation: borderShimmer 14s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}
.ref-item:hover { background: var(--bg3); color: rgba(237,227,208,.85); }

/* ── CERTS (doveryhodnost) ── */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(196,144,42,.06);
  border: 1px solid rgba(196,144,42,.06);
  margin-top: 64px;
}
.certs-grid--images { grid-template-columns: repeat(4, 1fr); }
.cert-cell {
  position: relative;
  background: var(--bg2);
  border: 1px solid rgba(196, 144, 42, 0.3);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: background .3s;
  cursor: pointer;
}

@keyframes borderShimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 300% 0%; }
}

.cert-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    90deg,
    rgba(196,144,42,0.1) 0%,
    rgba(196,144,42,0.6) 25%,
    rgba(196,144,42,0.1) 50%,
    rgba(196,144,42,0.6) 75%,
    rgba(196,144,42,0.1) 100%
  );
  background-size: 300% 100%;
  animation: borderShimmer 12s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}
.cert-cell:hover { background: var(--bg3); }
.cert-cell img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  border: 1px solid rgba(196,144,42,.12);
  transition: border-color .2s;
  display: block;
}
.cert-cell:hover img { border-color: rgba(196,144,42,.4); }
.cert-badge {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: rgba(196,144,42,.75);
  border: 1px solid rgba(196,144,42,.2);
  padding: 6px 16px;
  margin-top: 16px;
  display: inline-block;
}
.cert-cell .cert-name {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
  margin-top: 8px;
}

/* ── CERTS CAROUSEL ── */
.certs-carousel {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 64px;
}
.certs-viewport {
  flex: 1;
  overflow: hidden;
}
.certs-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.certs-track .certs-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
}
.certs-track .cert-cell {
  width: 100%;
  max-width: 340px;
}
.certs-track .cert-cell img { max-height: 340px; }
.certs-arrow {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(196,144,42,.3);
  background: transparent;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.certs-arrow:hover { border-color: var(--gold); background: rgba(196,144,42,.08); }
.certs-arrow svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.certs-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.certs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(196,144,42,.25);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.certs-dot:hover { background: rgba(196,144,42,.5); }
.certs-dot.active { background: var(--gold); transform: scale(1.35); }
.certs-counter {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--muted);
  margin-top: 16px;
}

/* ── ABOUT (o-nas) ── */
.about-full { padding: 80px 56px; max-width: 1200px; margin: 0 auto; }

.milestones {
  margin-top: 64px;
  position: relative;
  padding-left: 0;
}

.timeline-line {
  position: absolute;
  left: 116px;
  top: 80px;
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, #C4902A 0%, rgba(196,144,42,0.15) 100%);
  transition: height 0.3s ease-out;
  z-index: 0;
  border-radius: 2px;
}

.milestone-dot {
  position: absolute;
  left: 109px;
  top: 12px;
  width: 16px;
  height: 16px;
  z-index: 2;
}

.milestone-dot-inner {
  width: 10px;
  height: 10px;
  background: #C4902A;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  box-shadow: 0 0 6px rgba(196,144,42,0.6);
}

.milestone-dot-pulse {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(196,144,42,0.25);
  position: absolute;
  top: 0;
  left: 0;
  animation: none;
  transform: scale(0);
}

.milestone-item.in-view .milestone-dot-pulse {
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0%   { transform: scale(0.8); opacity: 0.8; }
  70%  { transform: scale(2);   opacity: 0;   }
  100% { transform: scale(2);   opacity: 0;   }
}

.milestone-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(196,144,42,.06);
  align-items: start;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.milestone-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.milestone-item:nth-child(4) { transition-delay: 0.05s; }
.milestone-item:nth-child(5) { transition-delay: 0.10s; }
.milestone-item:nth-child(6) { transition-delay: 0.15s; }
.milestone-item:nth-child(7) { transition-delay: 0.20s; }
.milestone-item:nth-child(8) { transition-delay: 0.25s; }
.milestone-item:nth-child(9) { transition-delay: 0.30s; }

.milestone-item:last-child { border-bottom: none; }
.milestone-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #C4902A;
  line-height: 1;
}
.milestone-text {
  font-size: .88rem;
  color: rgba(237,227,208,.85);
  font-weight: 300;
  line-height: 1.85;
  padding-top: 8px;
  letter-spacing: .02em;
}
.milestone-text strong { font-weight: 400; color: rgba(237,227,208,.85); }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(196,144,42,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 18px; height: 18px;
  stroke: #C4902A; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.contact-detail-text {
  font-size: .88rem;
  color: rgba(237,227,208,.85);
  line-height: 1.8;
  letter-spacing: .02em;
}
.contact-detail-text strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(196,144,42,.75);
  margin-bottom: 4px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(237,227,208,.65);
}
.form-group input,
.form-group textarea {
  background: #080604;
  border: 1px solid rgba(196,144,42,.12);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  font-weight: 300;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus { border-color: rgba(196,144,42,.4); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(237,227,208,.65); }
.form-group textarea { height: 140px; resize: vertical; }
/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .page-hero { padding: 72px 24px 56px; min-height: 340px; }

  .values-section { padding: 72px 24px; }
  .values-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .section-header { flex-direction: column; align-items: flex-start; gap: 20px; }

  .cta-section { padding: 56px 24px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }

  footer { padding: 56px 24px 32px; }
  .footer-top { grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 40px; }

  .content-section { padding: 56px 24px; }
  .content-grid { grid-template-columns: minmax(0,1fr); gap: 40px; }

  .services-full-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .services-full-grid .service-full-card { grid-column: span 2; }

  .refs-full { padding: 56px 24px; }
  .refs-full-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .logos-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }

  .certs-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .certs-grid--images { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .certs-carousel { gap: 12px; }
  .certs-arrow { width: 32px; height: 32px; }
  .certs-arrow svg { width: 13px; height: 13px; }

  .contact-grid { grid-template-columns: minmax(0,1fr); gap: 40px; }
  .form-row { grid-template-columns: minmax(0,1fr); }

  .about-full { padding: 56px 24px; }
  .milestone-item { grid-template-columns: 80px minmax(0,1fr); gap: 20px; }
}

@media (max-width: 700px) {
  .cookie-banner { padding: 20px 24px; }
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

@media (max-width: 600px) {
  .values-grid { grid-template-columns: minmax(0,1fr); }
  .job-types-grid { grid-template-columns: minmax(0,1fr); }
  .page-hero-jobs { flex-direction: column; align-items: flex-start; }
  /* Portrait screens: show the whole 16:9 frame instead of cropping it,
     and fill the letterbox bands with a blurred blow-up of the same shot
     so the video doesn't read as a cut-out rectangle on black. */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url(../hero-bg.jpg) center / cover no-repeat;
    filter: blur(34px) brightness(.42) saturate(1.15);
    transform: scale(1.18);
  }
  /* sit the frame flush against the top (under the nav) so there's no dead
     blurred gap before the sharp video starts */
  .hero-bg-video { object-fit: contain; object-position: center top; z-index: 1; }

  /* desktop overlay darkens the left edge for side-by-side text; on a narrow
     screen that covers the whole frame, so use a vertical-only fade here */
  .hero .hero-overlay {
    z-index: 2;
    background: linear-gradient(180deg,
      rgba(6,5,4,.55) 0%,
      rgba(6,5,4,.12) 22%,
      rgba(6,5,4,.18) 40%,
      rgba(6,5,4,.72) 64%,
      rgba(6,5,4,1) 100%);
  }
  /* the services list stacks into one long column on mobile; keep the
     watermark pinned near the middle of the screen as it scrolls by,
     instead of stuck up near the nav the whole time */
  .eagle-bg-icon { top: 38vh; width: 130vw; max-width: none; }
  .footer-top { grid-template-columns: minmax(0,1fr); }
  .services-full-grid { grid-template-columns: minmax(0,1fr); }
  .services-full-grid .service-full-card { grid-column: 1 / -1; }
  .refs-full-grid { grid-template-columns: minmax(0,1fr); }
  .logos-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .certs-grid { grid-template-columns: minmax(0,1fr); }
  .certs-grid--images { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .certs-carousel { gap: 6px; }
  .certs-arrow { width: 28px; height: 28px; }
  .certs-arrow svg { width: 11px; height: 11px; }
  .certs-track .cert-cell { max-width: none; padding: 16px; }
  .certs-track .cert-cell img { max-height: 260px; }
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(6, 5, 4, 0.97);
  border-top: 1px solid rgba(196, 144, 42, 0.3);
  z-index: 9999;
  padding: 20px 48px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cookie-banner-text strong {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.cookie-banner-text p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn-accept {
  background: var(--gold);
  color: #060504;
}
.cookie-btn-reject {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(196,144,42,0.3);
}

/* ── BUTTON SHIMMER ── */
@keyframes shimmer {
  0%   { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(250%) skewX(-15deg); }
}

.btn-primary,
.btn-dark,
.btn-outline {
  position: relative;
  overflow: hidden;
}

.btn-primary::after,
.btn-dark::after,
.btn-outline::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(196, 144, 42, 0.35) 50%,
    transparent 100%
  );
  transform: translateX(-100%) skewX(-15deg);
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

.btn-primary::after { animation-delay: 0s; }
.btn-dark::after    { animation-delay: 1s; }
.btn-outline::after { animation-delay: 2s; }

/* ── SUBPAGE EAGLE WATERMARK ── */
.eagle-page-watermark {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  overflow: clip;            /* clips the oversized icon so it can't create a horizontal scrollbar */
}

.eagle-page-icon {
  position: absolute;
  right: 0;
  top: 96px;            /* fixed offset clears the 72px nav on any viewport height */
  width: 920px;
  height: auto;
  display: block;
  opacity: 0.16;
}

.eagle-sub-feather {
  opacity: 0;
  animation: featherFadeIn 0.4s ease forwards;
  animation-delay: calc(var(--order) * 0.12s + 0.3s);
}

@keyframes featherFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

#eagle-core-sub {
  opacity: 0;
  animation: featherFadeIn 0.5s ease forwards;
  animation-delay: 0.1s;
}

/* Ensure subpage content layers above the fixed watermark */
.page-hero,
.content-section,
.values-section,
.cta-section,
footer {
  position: relative;
  z-index: 1;
}

/* ── HERO SCROLL HINT ── */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(196, 144, 42, 0.6);
  width: 28px;
  height: 28px;
  animation: scrollBounce 2s ease-in-out infinite;
  cursor: pointer;
  z-index: 2;
}

.hero-scroll-hint svg {
  width: 100%;
  height: 100%;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0);   opacity: 0.6; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 1;   }
}

/* ── PHOTO GALLERY ── */
.gallery-section {
  position: relative;
  z-index: 1;
  padding: 88px 56px 120px;
  background: var(--bg);
}

.gallery-shell {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.gallery-header {
  max-width: 680px;
  margin-bottom: 48px;
}

.gallery-header .section-h2 {
  margin-bottom: 16px;
}

.gallery-intro {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

.gallery-grid {
  column-count: 3;
  column-gap: 12px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 12px;
  padding: 0;
  overflow: hidden;
  break-inside: avoid;
  border: 1px solid rgba(196,144,42,.12);
  background: var(--bg2);
  cursor: zoom-in;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(180deg, transparent 65%, rgba(6,5,4,.24));
  pointer-events: none;
  transition: border-color .25s ease;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .35s ease, filter .35s ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
  filter: brightness(1.04);
}

.gallery-item:hover::after {
  border-color: rgba(196,144,42,.6);
}

.gallery-item:focus-visible {
  outline: 3px solid var(--gold-lt);
  outline-offset: 3px;
}

body.gallery-open {
  overflow: hidden;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 80px;
  background: rgba(6,5,4,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.gallery-lightbox-figure {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.gallery-lightbox-image {
  display: block;
  max-width: calc(100vw - 160px);
  max-height: calc(100vh - 112px);
  max-height: calc(100dvh - 112px);
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
}

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(196,144,42,.45);
  background: rgba(6,5,4,.72);
  color: var(--white);
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  border-color: var(--gold);
  background: rgba(196,144,42,.15);
  color: var(--gold-lt);
}

.gallery-lightbox-close:focus-visible,
.gallery-lightbox-prev:focus-visible,
.gallery-lightbox-next:focus-visible {
  outline: 3px solid var(--gold-lt);
  outline-offset: 3px;
}

.gallery-lightbox-close svg,
.gallery-lightbox-prev svg,
.gallery-lightbox-next svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-lightbox-close {
  top: 20px;
  right: 20px;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-prev { left: 20px; }
.gallery-lightbox-next { right: 20px; }

.gallery-lightbox-counter {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--muted);
}

@media (max-width: 900px) {
  .gallery-section { padding: 72px 24px 88px; }
  .gallery-grid { column-count: 2; }
}

@media (max-width: 560px) {
  .gallery-section { padding: 56px 16px 72px; }
  .gallery-header { margin-bottom: 32px; }
  .gallery-grid { column-count: 1; }
  .gallery-lightbox { padding: 64px 16px; }
  .gallery-lightbox-image {
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 144px);
    max-height: calc(100dvh - 144px);
  }
  .gallery-lightbox-close,
  .gallery-lightbox-prev,
  .gallery-lightbox-next {
    width: 44px;
    height: 44px;
  }
  .gallery-lightbox-close { top: 12px; right: 12px; }
  .gallery-lightbox-prev { left: 8px; }
  .gallery-lightbox-next { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-item img,
  .gallery-item::after {
    transition: none;
  }
}

/* ── PARTNERS SECTION ── */
.partners-section {
  background: var(--bg);
  padding: 80px 56px;
  border-top: 1px solid rgba(196,144,42,0.1);
}

.partners-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.partners-inner h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  margin-top: 8px;
  margin-bottom: 56px;
}

.partners-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-item {
  flex: 1;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo {
  max-width: 140px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.7);
  opacity: 0.6;
  transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.12);
  opacity: 0.9;
  filter: grayscale(100%) brightness(0.9);
}

.partner-cta {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #C4902A;
  background: transparent;
  border: 1px solid #C4902A;
  padding: 14px 22px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, color .2s;
}
.partner-cta:hover {
  background: #C4902A;
  color: #060504;
}

/* ── CONTACT THANK YOU ── */
.contact-thankyou {
  text-align: center;
  padding: 60px 20px;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.thankyou-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: var(--gold);
}

.thankyou-icon svg {
  width: 100%;
  height: 100%;
}

.contact-thankyou h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.contact-thankyou p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── TOP CLIENTS ROW (referencie) ── */
.top-clients-row {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(196,144,42,0.1);
}

.top-clients-row .section-label {
  margin-bottom: 24px;
}

.top-clients-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.top-client-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  transition: transform 0.3s ease;
}

.top-client-item:hover {
  transform: scale(1.12);
}

.top-client-logo {
  width: 130px;
  height: 60px;
  object-fit: contain;
  filter: grayscale(40%) brightness(0.85);
  opacity: 0.85;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.top-client-logo:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
}

/* ── REF-ITEM SHIMMER STAGGER ── */
/* Delays spread across the 14s cycle; each row shifts by 2s so no two
   adjacent cells (horizontal or vertical) share the same phase. */
.ref-item:nth-child(1)::before  { animation-delay: 0s; }
.ref-item:nth-child(2)::before  { animation-delay: 3.5s; }
.ref-item:nth-child(3)::before  { animation-delay: 7s; }
.ref-item:nth-child(4)::before  { animation-delay: 10.5s; }
.ref-item:nth-child(5)::before  { animation-delay: 2s; }
.ref-item:nth-child(6)::before  { animation-delay: 5.5s; }
.ref-item:nth-child(7)::before  { animation-delay: 9s; }
.ref-item:nth-child(8)::before  { animation-delay: 12.5s; }
.ref-item:nth-child(9)::before  { animation-delay: 1s; }
.ref-item:nth-child(10)::before { animation-delay: 4.5s; }
.ref-item:nth-child(11)::before { animation-delay: 8s; }
.ref-item:nth-child(12)::before { animation-delay: 11.5s; }
.ref-item:nth-child(13)::before { animation-delay: 3s; }
.ref-item:nth-child(14)::before { animation-delay: 6.5s; }
.ref-item:nth-child(15)::before { animation-delay: 10s; }
.ref-item:nth-child(16)::before { animation-delay: 13.5s; }

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(196,144,42,0.3);
  color: var(--gold);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  padding: 0;
}

.lang-btn svg {
  width: 18px;
  height: 18px;
}

.lang-btn:hover {
  border-color: var(--gold);
  background: rgba(196,144,42,0.08);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(6,5,4,0.97);
  border: 1px solid rgba(196,144,42,0.2);
  min-width: 80px;
  display: none;
  flex-direction: column;
  z-index: 1000;
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher.open .lang-dropdown {
  display: flex;
}

.lang-option {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--muted);
  padding: 10px 16px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  text-align: center;
}

.lang-option:hover {
  color: var(--gold);
  background: rgba(196,144,42,0.06);
}

.lang-option.active {
  color: var(--gold);
}

/* ── NAV SOCIAL LINKS ── */
.nav-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-social-link {
  background: transparent;
  border: 1px solid rgba(196,144,42,0.3);
  color: var(--gold);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.nav-social-link svg {
  width: 18px;
  height: 18px;
}

.nav-social-link:hover {
  border-color: var(--gold);
  background: rgba(196,144,42,0.08);
}

/* ── NAV SERVICES DROPDOWN ── */
.nav-dropdown { position: relative; }

.nav-dropdown > a::after {
  content: '▾';
  font-size: 8px;
  margin-left: 7px;
  vertical-align: 2px;
  opacity: .7;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(6,5,4,0.97);
  border: 1px solid rgba(196,144,42,0.2);
  min-width: 230px;
  display: none;
  flex-direction: column;
  z-index: 1000;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: flex; }

.nav-dropdown-menu a {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(237,227,208,.65);
  text-decoration: none;
  padding: 12px 20px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  color: #C4902A;
  background: rgba(196,144,42,0.06);
}

.nav-mobile-overlay a.nav-mobile-sub {
  font-size: .85rem;
  letter-spacing: .18em;
  color: rgba(237,227,208,.55);
  margin-top: -16px;
}

/* ── HOMEPAGE HERO ── */
.hero {
  position: relative;
  margin-top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  height: calc(100dvh - var(--nav-height));
  min-height: calc(100vh - var(--nav-height));
  min-height: calc(100dvh - var(--nav-height));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  scroll-margin-top: var(--nav-height);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,5,4,.3) 0%, rgba(6,5,4,.1) 40%, rgba(6,5,4,.55) 72%, rgba(6,5,4,.92) 88%, rgba(6,5,4,1) 100%),
    linear-gradient(90deg, rgba(6,5,4,.65) 0%, rgba(6,5,4,.35) 35%, rgba(6,5,4,.05) 60%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; padding: 120px 56px 48px; max-width: 700px; }
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 6.2rem);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.02em;
  color: #EDE3D0;
  margin-bottom: 26px;
}
.hero-perex {
  font-size: .9rem;
  font-weight: 300;
  line-height: 2.1;
  color: rgba(237,227,208,.85);
  max-width: 440px;
  margin-bottom: 40px;
  letter-spacing: .025em;
}
.hero-perex strong { color: rgba(237,227,208,.85); font-weight: 400; }
.hero-btns { display: flex; gap: 14px; align-items: center; margin-bottom: 52px; }
.btn-secondary {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: transparent;
  color: rgba(237,227,208,.85);
  padding: 16px 36px;
  border: 1px solid rgba(196,144,42,0.4);
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
  display: inline-block;
}
.btn-secondary:hover { border-color: #C4902A; color: #EDE3D0; }

.hero-stats { display: flex; gap: 0; border-top: 1px solid rgba(196,144,42,.1); padding-top: 30px; }
.stat { padding-right: 32px; margin-right: 32px; border-right: 1px solid rgba(196,144,42,.08); }
.stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; font-weight: 300; color: #C4902A; line-height: 1; display: block; letter-spacing: -.01em; }
.stat-label { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(237,227,208,.85); margin-top: 6px; display: block; }

.hero-scroll { position: absolute; bottom: 44px; right: 56px; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.scroll-text { font-family: 'Oswald', sans-serif; font-size: 0.7rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(196,144,42,.75); writing-mode: vertical-rl; }

/* ── HOMEPAGE STATS BAR ── */
.stats-bar { background: #080604; border-top: 1px solid rgba(196,144,42,.06); border-bottom: 1px solid rgba(196,144,42,.06); }
.stats-bar-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); }
.sbar-item { padding: 40px 32px; border-right: 1px solid rgba(196,144,42,.06); transition: background .3s; }
.sbar-item:last-child { border-right: none; }
.sbar-item:hover { background: rgba(196,144,42,.03); }
.sbar-num { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; font-weight: 300; color: #C4902A; line-height: 1; display: block; margin-bottom: 8px; }
.sbar-label { font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: rgba(237,227,208,.85); }

/* ── HOMEPAGE SERVICES GRID ── */
.services { background: #060504; padding: 96px 56px; border-top: 1px solid rgba(196,144,42,.05); overflow: clip; }
.services-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.section-eyebrow { font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: .32em; text-transform: uppercase; color: rgba(196,144,42,.85); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.section-eyebrow::after { content: ''; width: 24px; height: 1px; background: rgba(196,144,42,.25); }
.section-h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 3.5vw, 3.4rem); font-weight: 300; color: #EDE3D0; line-height: 1.1; letter-spacing: -.01em; margin-bottom: 56px; }
.section-h2 em { color: #C4902A; font-style: italic; }

.services-grid { display: grid; gap: 1px; background: rgba(196,144,42,.06); border: 1px solid rgba(196,144,42,.06); }
.services-grid + .services-grid { margin-top: -1px; }
.services-grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.services-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.service-card { background: rgba(8,6,4,0.7); padding: 36px 28px; text-decoration: none; display: flex; flex-direction: column; gap: 16px; position: relative; overflow: hidden; transition: background .3s; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: #C4902A; transform: scaleX(0); transition: transform .4s; transform-origin: left; }
.service-card:hover { background: rgba(12,9,6,0.85); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { width: 40px; height: 40px; border: 1px solid rgba(196,144,42,.15); display: flex; align-items: center; justify-content: center; }
.service-icon svg { width: 18px; height: 18px; stroke: #C4902A; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-num { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: .14em; color: rgba(196,144,42,.75); }
.service-name { font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #EDE3D0; line-height: 1.4; flex: 1; }
.service-text { font-size: 0.95rem; color: rgba(237,227,208,.85); line-height: 1.8; font-weight: 300; }
.service-arrow { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(196,144,42,.75); transition: color .3s; }
.service-card:hover .service-arrow { color: #C4902A; }

@media (max-width: 900px) {
  .hero-content { padding: 120px 24px 48px; }
  .stats-bar-inner { grid-template-columns: repeat(3, 1fr); }
  .services { padding: 72px 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .sbar-item { padding: 24px 16px; }
  .sbar-num { font-size: 2.2rem; }
  .services-grid { grid-template-columns: 1fr; }
}

/* Mobile homepage hero: keep the complete 16:9 video in its own media area.
   The text panel starts below that area instead of overlapping the picture. */
@media (max-width: 600px) {
  .hero {
    --mobile-hero-media-height: 56.25vw;
    height: auto;
    min-height: calc(100dvh - var(--nav-height));
    display: block;
    background: var(--bg);
  }

  .hero::before {
    display: none;
  }

  .hero-bg-video {
    top: 0;
    bottom: auto;
    height: var(--mobile-hero-media-height);
    object-fit: contain;
    object-position: center top;
    background: var(--bg);
  }

  .hero .hero-overlay {
    top: 0;
    bottom: auto;
    height: var(--mobile-hero-media-height);
    background: linear-gradient(180deg,
      rgba(6,5,4,.14) 0%,
      rgba(6,5,4,.02) 72%,
      rgba(6,5,4,.2) 100%);
  }

  .hero-content {
    width: 100%;
    max-width: none;
    padding: calc(var(--mobile-hero-media-height) + 32px) 24px 48px;
  }
}
