/* =========================
   Base / Reset
========================= */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* poštuj hidden atribut (bitno za .cards-mobile) */
[hidden] {
  display: none !important;
}

@font-face {
  font-family: "Noto Sans";
  src: url("fonts/NotoSans-Regular.woff2") format("woff2"),
    url("fonts/NotoSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans";
  src: url("fonts/NotoSans-SemiBold.woff2") format("woff2"),
    url("fonts/NotoSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

body {
  background-color: #f6f6f6;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  font-family: "Noto Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

strong {
  font-weight: 600;
}

p {
  color: #fff;
}

@media (max-width: 768px) {
  br {
    display: none;
  }
}

/* =========================
   Layout helpers
========================= */
.container {
  max-width: 89.65vw;
  width: 100%;
  padding: 0 5.2vw;
  margin: 0 auto;
}

.container--xl {
  max-width: 93.75vw;
  width: 100%;
  padding: 0 5.2vw;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .container {
    max-width: 100vw;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.center {
  text-align: center;
}

/* =========================
   Typography
========================= */
.section-pretitle {
  font-size: 1.25vw;
  line-height: 1.2;
  display: block;
  margin-bottom: 17px;
}

@media (max-width: 1024px) {
  .section-pretitle {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .section-pretitle {
    font-size: 14px;
    margin-bottom: 9px;
  }
}

.section-title {
  color: #fff;
  font-size: 2.5vw;
  width: 100%;
  font-weight: 600;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .section-title {
    font-size: 35px;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }
}

.section-subtitle {
  font-size: 1.05vw;
  line-height: 1.4;
  color: #fff;
}
@media (max-width: 1600px) {
  .section-subtitle {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .section-subtitle {
    font-size: 16px;
  }
}

/* =========================
   Header + Nav
========================= */
:root {
  --hdr-padY: 28px;
  --hdr-padY-compact: 12px;
}
@media (max-width: 1024px) {
  :root {
    --hdr-padY: 20px;
    --hdr-padY-compact: 10px;
  }
}
@media (max-width: 767px) {
  :root {
    --hdr-padY: 14px;
    --hdr-padY-compact: 10px;
  }
}

.site-header {
  padding: var(--hdr-padY) 0;
  padding: var(--hdr-padY-compact) 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transform: translateY(0);
  transition: padding 0.24s ease, transform 0.24s ease,
    background-color 0.24s ease, box-shadow 0.24s ease,
    -webkit-backdrop-filter 0.24s ease, backdrop-filter 0.24s ease;
  background-color: transparent;
  background-color: #010101
  /* background-color: rgba(0, 0, 0, 0.6); */
}
.site-header--scrolled {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.site-header--hidden {
  transform: translateY(-100%);
}

.site-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  position: relative;
  z-index: 9999;
}

.logo img {
  width: 8.5vw;
  height: auto;
  display: block;
  transition: transform 0.24s ease;
}
@media (max-width: 1024px) {
  .logo img {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .logo img {
    width: 61%;
  }
}

/* Hamburger */
.nav-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: none;
  width: 36px;
  height: 28px;
  position: relative;
}
.nav-toggle .bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle .bar:nth-child(1) {
  top: 4px;
}
.nav-toggle .bar:nth-child(2) {
  top: 13px;
}
.nav-toggle .bar:nth-child(3) {
  bottom: 4px;
}
@media (max-width: 767px) {
  .nav-toggle {
    display: block;
    z-index: 1101;
  }
}
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

/* Primary menu (desktop) */
.menu {
  display: flex;
  align-items: center;
  gap: 7vw;
  transition: gap 0.24s ease;
}
@media (max-width: 1500px) {
  .menu {
    gap: 4vw;
  }
}

.menu__item {
  list-style: none;
}

.menu__link {
  text-decoration: none;
  color: #fff;
  font-size: 1.05vw;
  position: relative;
}

/* hover samo na uređajima koji imaju hover; focus-visible ostaje svuda */
@media (hover: hover) and (pointer: fine) {
  .menu__link:hover::after {
    transform: scaleX(1);
    opacity: 1;
  }
}
.menu__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  opacity: 0;
  transform-origin: left center;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.menu__link:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

@media (max-width: 767px) {
  .menu__link::after {
    bottom: -2px;
  }
}
@media (max-width: 1500px) {
  .menu__link {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .menu__link {
    font-size: 14px;
    padding-top: 42px;
  }
}

/* Hamburger → X */
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* =========================
   Hero
========================= */
.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  isolation: isolate;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
  background-color: #000;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 170px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}
@media (max-width: 768px) {
  .hero__video {
    object-position: right center;
  }
}

.hero__content {
  max-width: 46vw;
  position: relative;
  z-index: 2;
  padding-top: 0.5rem;
}
@media (max-width: 1024px) {
  .hero__content {
    max-width: 570px;
    padding-left: 0;
  }
}

.hero__content-title {
  color: #fff;
  font-size: 3.7vw;
  line-height: 1.2;
  margin-bottom: 4vh;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .hero__content-title {
    font-size: 46px;
  }
}
@media (max-width: 768px) {
  .hero__content-title {
    font-size: 36px;
  }
}

.hero__content-subtitle {
  color: #fff;
  font-size: 1.88vw;
  line-height: 1.4;
  margin-bottom: 3vh;
}
@media (max-width: 1024px) {
  .hero__content-subtitle {
    font-size: 22px;
  }
}

.hero__content-desc {
  display: block;
  color: #fff;
  font-size: 1.3vw;
}
@media (max-width: 1024px) {
  .hero__content-desc {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .hero__content-desc {
    font-size: 18px;
  }
}

/* =========================
   about
========================= */
.about {
  padding: 10vh 0 55vh;
  min-height: 101vh;
  position: relative;
  z-index: 0;
}

/* layer pozadine je po potrebi, trenutno isključen
.about::before {
  content: "";
  position: absolute; inset: 0; background: #f6f6f6; pointer-events: none;
  z-index: 1; opacity: 1; transition: opacity .45s ease; will-change: opacity;
}
.box.black .about::before { opacity: 0; }
*/

.box {
  position: relative;
  transition: background-color 500ms ease;
  isolation: isolate;
}
.box.black {
  background-color: #010101 !important;
}

@media (max-width: 1400px) {
  .about {
    padding: 10vh 0;
  }
}
@media (max-width: 1024px) {
  .about {
    padding: 100px 0;
    min-height: fit-content;
  }
}
@media (max-width: 900px) {
  .about {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .about {
    padding: 80px 0 120px;
  }
}

.about__container {
  position: relative;
  z-index: 2;
}
@media (min-width: 901px) {
  .about__container {
    display: flex;
    position: relative;
    column-gap: 80px;
  }
}

.about__head {
  max-width: 50%;
  flex: 50%;
}
@media (max-width: 1024px) {
  .about__head {
    margin-bottom: 20px;
  }
}
@media (max-width: 900px) {
  .about__head {
    max-width: 100%;
    padding-left: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .about__head {
    margin-bottom: 50px;
  }
}

.about__head .section-pretitle {
  color: #000;
}
.about__head .section-title {
  margin-bottom: 40px;
  color: #000;
}
.about__head .section-subtitle {
  color: #000;
}
@media (max-width: 768px) {
  .about__head .section-subtitle {
    max-width: 100%;
  }
}

.about-right {
  max-width: 50%;
  flex: 50%;
}
@media (max-width: 900px) {
  .about-right {
    max-width: 100%;
  }
}

.about-right__item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 20px;
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 20px;
  transition: 550ms ease;
}

/* hover samo gde postoji hover */
@media (hover: hover) and (pointer: fine) {
  .about-right__item:hover {
    background-color: #eeeeee;
    cursor: pointer;
  }
}

@media (max-width: 900px) {
  .about-right__item {
    padding: 20px;
    gap: 20px;
  }
}
.about-right__item:last-of-type {
  margin-bottom: 0;
}

.about-right__text h4 {
  color: #000;
  font-size: 1.05vw;
  margin-bottom: 5px;
}
@media (max-width: 1600px) {
  .about-right__text h4 {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .about-right__text h4 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .about-right__text h4 {
    font-size: 16px;
  }
}

.about-right__text p {
  font-size: 1.05vw;
  color: #000;
}
@media (max-width: 1600px) {
  .about-right__text p {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .about-right__text p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .about-right__text p {
    font-size: 16px;
  }
}

/* =========================
   Methodology
========================= */
.section-methodology {
  padding: 0 0 12.5vh;
  position: relative;
}
@media (max-width: 1400px) {
  .section-methodology {
    padding: 10vh 0;
  }
}
@media (max-width: 1024px) {
  .section-methodology {
    padding: 100px 0;
  }
}
@media (max-width: 900px) {
  .section-methodology {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .section-methodology {
    padding: 80px 0 40px;
    background-color: #010101;
  }
}

.section-methodology__head {
  position: relative;
  padding: 0 0 8.5vh;
  max-width: 48vw;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  will-change: transform, opacity;
  color: #fff;
}
.section-methodology__head .section-title {
  margin-bottom: 43px;
}
@media (max-width: 1400px) {
  .section-methodology__head {
    padding-bottom: 6vh;
    margin-bottom: 7vh;
  }
}
@media (max-width: 1200px) {
  .section-methodology__head {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 900px) {
  .section-methodology__head {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .section-methodology__head {
    opacity: 1;
    visibility: visible;
  }
}

.section-methodology__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.section-methodology__container {
  flex: 0 0 calc(50% - 10px);
  max-width: calc(50% - 10px);
  background: #111;
  padding: 1.5vw 2.1vw;
  border-radius: 20px;
  transition: 350ms ease;
}

/* hover samo na uređajima sa hover-om */
@media (hover: hover) and (pointer: fine) {
  .section-methodology__container:hover {
    background-color: #252525;
  }
  .section-methodology__container:hover .section-methodology__left-text h3,
  .section-methodology__container:hover .section-methodology__right p {
    color: #fff;
  }
  .section-methodology__container:hover .icon {
    background-color: #fff;
  }
}

@media (max-width: 1024px) {
  .section-methodology__container {
    padding: 15px 30px;
  }
}
@media (max-width: 900px) {
  .section-methodology__container {
    padding: 20px;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .section-methodology__container {
    display: block;
    flex: 100%;
    max-width: 100%;
  }
  .section-methodology__container:last-of-type {
    border-bottom: 0;
  }
}

.section-methodology__left {
  display: flex;
  align-items: center;
  gap: 1vw;
}
@media (max-width: 768px) {
  .section-methodology__left {
    margin-bottom: 20px;
    align-items: flex-start;
    gap: 2vw;
  }
}

.section-methodology__left-text h3 {
  font-size: 1.35vw;
  color: #fff;
}
@media (max-width: 1024px) {
  .section-methodology__left-text h3 {
    font-size: 22px;
  }
}
@media (max-width: 900px) {
  .section-methodology__left-text h3 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .section-methodology__left-text h3 {
    font-size: 22px;
  }
}

.section-methodology__right p {
  font-size: 1.05vw;
  color: #fff;
}
@media (max-width: 1600px) {
  .section-methodology__right p {
    font-size: 16px;
  }
}

.section-methodology .section-methodology-img {
  position: absolute;
  top: -450px;
  left: 0;
  z-index: 5;
  max-width: 55%;
  width: 100%;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  pointer-events: none;
}
@media (max-width: 1400px) {
  .section-methodology .section-methodology-img {
    top: -100px;
    max-width: 45%;
  }
}
@media (max-width: 768px) {
  .section-methodology .section-methodology-img {
    top: -100px;
    max-width: 100%;
  }
}

.section-methodology .section-methodology-img img {
  width: 100%;
  height: auto;
}
.section-methodology .container {
  position: relative;
  z-index: 10;
}

.section-methodology::before {
  content: "";
  display: block;
  width: 100%;
  height: 13.5vh;
  background-color: red;
  display: none;
}
.section-methodology .background {
  background-image: url("img/image-01.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  position: absolute;
  background-size: contain;
  inset: 0;
  display: none;
}

/* Icons (mask) */
.icon {
  display: inline-block;
  width: 2.9vw;
  height: 2.9vw;
  background-color: #656565;
  transition: background-color 0.3s ease;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
@media (max-width: 768px) {
  .icon {
    width: 55px;
    height: 55px;
  }
}
.icon--start-with-why {
  -webkit-mask-image: url("img/start-with-why.svg");
  mask-image: url("img/start-with-why.svg");
}
.icon--distributed-reasoning {
  -webkit-mask-image: url("img/distributed-reasoning.svg");
  mask-image: url("img/distributed-reasoning.svg");
}
.icon--separation-of-concerns {
  -webkit-mask-image: url("img/separation-of-concerns.svg");
  mask-image: url("img/separation-of-concerns.svg");
}
.icon--effective-communication {
  -webkit-mask-image: url("img/effective-communication.svg");
  mask-image: url("img/effective-communication.svg");
}
.icon--keep-shipping {
  -webkit-mask-image: url("img/keep-shipping.svg");
  mask-image: url("img/keep-shipping.svg");
}
.icon--living-system-modeling {
  -webkit-mask-image: url("img/living-system-modeling.svg");
  mask-image: url("img/living-system-modeling.svg");
}
.icon--we-execute {
  -webkit-mask-image: url("img/we-execute.svg");
  mask-image: url("img/we-execute.svg");
}
.icon--non-scalable-by-design {
  -webkit-mask-image: url("img/non-scalable-by-design.svg");
  mask-image: url("img/non-scalable-by-design.svg");
}

.lottie-ico {
  display: inline-block;
  width: 2.9vw;
  height: 2.9vw;
}

@media (max-width: 768px) {
  .lottie-ico {
    width: 30px;
    height: 30px; }
}

/* =========================
   Cards
========================= */
.cards {
  padding: 6.5vh 0 18.5vh;
  position: relative;
  z-index: 10;
  background-color: #010101;
}
@media (max-width: 1400px) {
  .cards {
    padding: 10vh 0;
  }
}
@media (max-width: 1024px) {
  .cards {
    padding: 100px 0;
  }
}
@media (max-width: 900px) {
  .cards {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .cards {
    padding: 40px 0 80px;
    margin-top: -2px;
  }
}

.cards-head {
  margin-bottom: 60px;
  max-width: 74vw;
}
.cards-head .section-title {
  margin-bottom: 4.4vh;
}
@media (max-width: 1024px) {
  .cards-head {
    max-width: 100vw;
  }
  .cards-head .section-title {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .cards-head {
    margin-bottom: 20px;
  }
}
.cards-head .section-subtitle {
  max-width: 50.5vw;
}
@media (max-width: 1024px) {
  .cards-head .section-subtitle {
    max-width: 100%;
  }
}

.cards__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card-left .cards-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}
.card-left .cards-img[data-level="default"] {
  opacity: 1;
}
.card-left {
  position: relative;
}
.card-left,
.card-right {
  flex: 46%;
  max-width: 46%;
  position: relative;
}

.card-right__item-wrap {
  display: flex;
  margin-bottom: 10px;
}
.card-right__item-wrap span {
  font-size: 1.05vw;
  font-weight: 600;
  display: block;
  position: relative;
  padding-right: 20px;
  color: #fff;
}
@media (max-width: 1600px) {
  .card-right__item-wrap span {
    font-size: 16px;
  }
}
.card-right__item-wrap span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 27px;
  width: 1px;
  background-color: #f6f6f6;
}

.card-right__item {
  font-size: 1.05vw;
  margin-bottom: 10px;
  padding: 24px;
  transition: all 0.25s ease;
  border-radius: 6px;
  z-index: 10;
  position: relative;
}
.card-right__item-wrap p {
  font-size: 1.05vw;
  padding-left: 20px;
  margin-bottom: 0;
}
@media (max-width: 1600px) {
  .card-right__item-wrap p {
    font-size: 16px;
  }
}

.card-right--pinned {
  position: relative;
}
.card-right__highlight {
  position: absolute;
  left: -12px;
  right: -12px;
  top: 0;
  height: 0;
  border-radius: 14px;
  background: rgba(17, 17, 17, 1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  pointer-events: none;
  opacity: 0;
  will-change: transform, height, opacity;
  transform: translateY(0);
  z-index: 0;
}

/* =========================
   Contact
========================= */
.contact {
  padding: 13.5vh 0 24vh;
  background-color: #010101;
  text-align: center;
  margin-top: -2px;
}
.contact__panel {
  max-width: 74vw;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact__panel {
    max-width: 100%;
  }
}
.contact .section-title {
  margin-bottom: 2.5vh;
}
@media (max-width: 1400px) {
  .contact {
    padding: 10vh 0 17vh;
  }
}
@media (max-width: 1024px) {
  .contact {
    padding: 100px 0;
  }
  .contact .section-title {
    margin-bottom: 20px;
  }
}
@media (max-width: 900px) {
  .contact {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .contact__icon img {
    width: 38px;
    height: 38px;
  }
}

.contact__pretitle {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  display: block;
  margin: 50px 0 10px;
}
@media (max-width: 1024px) {
  .contact__pretitle {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .contact__pretitle {
    font-size: 15px;
    margin: 30px 0 10px;
  }
}

.contact__text {
  font-size: 1.3vw;
  max-width: 53vw;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .contact__text {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .contact__text {
    max-width: 90vw;
  }
}

/* =========================
   Footer
========================= */
.site-footer {
  padding: 40px 0;
  background-color: #fff;
  font-size: 14px;
}
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .site-footer__inner {
    flex-direction: column;
    gap: 40px;
  }
}
.site-footer__copy {
  color: #000;
  font-size: 14px;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .site-footer__copy {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .site-footer__copy {
    order: 1;
  }
}
@media (max-width: 768px) {
  .site-footer__social {
    order: 0;
  }
}

.site-footer__nav {
  display: flex;
  align-items: center;
  gap: 60px;
}
.site-footer__nav a {
  text-decoration: none;
  color: #000;
  transition: 350ms ease;
  position: relative;
  display: inline-block;
}
.site-footer__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  opacity: 0;
  transform-origin: left center;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

/* hover samo gde postoji hover; focus-visible ostaje */
@media (hover: hover) and (pointer: fine) {
  .site-footer__nav a:hover::after {
    transform: scaleX(1);
    opacity: 1;
  }
}
.site-footer__nav a:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

@media (max-width: 768px) {
  .site-footer__nav {
    order: 2;
  }
}

/* a11y focus */
.menu a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* =========================================================
   MOBILE MENU (<=767px)
========================================================= */
@media (max-width: 767px) {
  .main-nav {
    position: static;
    margin-left: auto;
  }
  .nav-toggle {
    display: block;
    z-index: 1101;
  }

  .menu {
    display: none;
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 1100;
    padding: 72px 24px 32px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 42px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    width: 100vw;
    max-width: none;
  }
  .main-nav.is-open .menu {
    display: flex;
    height: 100vh;
  }

  .menu__item {
    list-style: none;
    position: relative;
    text-align: center;
  }
  .menu__item + .menu__item::before {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: #6a6a6a;
    opacity: 0.8;
    margin: 6px auto 0;
  }
  .menu__link {
    color: #eaeaea;
    text-decoration: none;
    font-size: 20px;
    letter-spacing: 0.01em;
    display: block;
  }
}

/* =========================================================
   Cards (mobile slider) & responsive toggle
========================================================= */
@media (min-width: 1025px) {
  .cards-mobile {
    display: none !important;
  }
  .cards__container {
    display: flex !important;
  }
}
@media (max-width: 1024px) {
  .cards__container {
    display: none !important;
  }
  .cards-mobile {
    display: block !important;
  }
}
.cards-mobile {
  position: relative;
}
.cards-mobile-swiper {
  overflow: hidden;
  padding-bottom: 28px;
}
.cards-mobile__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .cards-mobile__img img {
    width: 80% !important;
  }
}
@media (max-width: 768px) {
  .cards-mobile__img img {
    width: 100% !important;
  }
}

.cards-mobile__card {
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 35px;
}
@media (max-width: 1024px) {
  .cards-mobile__card {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cards-mobile__card {
    padding: 20px;
  }
}

.cards-mobile__top {
  align-items: center;
  margin-bottom: 8px;
}
.cards-mobile__top span {
  font-weight: 600;
  position: relative;
  padding-right: 12px;
  display: inline-block;
  color: #fff;
}
.cards-mobile__top span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 22px;
  background: #f6f6f6;
}
.cards-mobile__top p {
  position: relative;
  margin-top: 5px;
  font-weight: 600;
}
.cards-mobile__text {
  margin: 0;
}

/* grab/grabbing kursor i preko slike */
.cards-mobile .swiper {
  cursor: grab;
}
.cards-mobile .swiper-grab-cursor,
.cards-mobile .swiper.swiper-initialized:active {
  cursor: grabbing;
}
.cards-mobile .cards-mobile__img-stage,
.cards-mobile .cards-mobile__img-stage img {
  cursor: inherit;
}

/* Swiper dots */
.cards-mobile .swiper-pagination-bullets .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.35;
}
.cards-mobile .swiper-pagination-bullet-active {
  opacity: 1 !important;
}

::selection {
  background-color: #656565;
  color: #f6f6f6;
}

/* //////////CONTENT///////////// */
#privacy .site-header {
  background-color: #010101;
}
#privacy .site-footer {
  background-color: #f2f2f2;
}
#terms-of-use .site-header {
  background-color: #010101;
}
#terms-of-use .site-footer {
  background-color: #f2f2f2;
}

.content {
  padding: 190px 0 117px;
  background-color: #fff;
}
@media (max-width: 1024px) {
  .content {
    padding: 100px 0;
  }
}
@media (max-width: 768px) {
  .content {
    padding: 80px 0;
  }
}

.content h1 {
  color: #000;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .content h1 {
    font-size: 30px;
  }
}

.content p,
.content span {
  font-size: 20px;
  margin-bottom: 15px;
  color: #000;
  display: block;
}
.content span {
  margin-bottom: 5px;
}
.content a {
  font-size: 20px;
  color: #010101;
  display: block;
}
@media (max-width: 1024px) {
  .content a {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .content p,
  .content span {
    font-size: 16px;
  }
}

.content ul {
  list-style: none;
  padding-left: 11px;
}
.content ul li {
  font-size: 20px;
  line-height: 1.2;
  padding-left: 15px;
  position: relative;
  color: #000;
  margin-bottom: 5px;
}
@media (max-width: 1024px) {
  .content ul li {
    font-size: 16px;
  }
}
.content ul li::before {
  content: "";
  background-color: #010101;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.content h3 {
  font-size: 32px;
  margin: 40px 0 20px;
  color: #000;
}
@media (max-width: 1024px) {
  .content h3 {
    font-size: 23px;
  }
}
