@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
  /* ===== COLORS ===== */
  --blue: #3654fe;
  --dark: #373b47;
  --red: #ff5036;
  --light-bg: #f6f9ff;
  --gray-bg: #e9edf4;
  --border: #efefef;
  --border-card: #e3e5eb;
  --white: #ffffff;
  --dark-60: rgba(55, 59, 71, 0.6);
  --footer-bg: #1a1f2e;

  /* ===== TYPOGRAPHY ===== */
  --font: 'DM Sans', sans-serif;

  /* ===== CONTAINERS ===== */
  --container: 1280px;
  --full-padding-mobile: 25px;
  --full-padding-desktop: 40px;
  --container-padding-mobile: 25px;

  /* ===== TRANSITIONS ===== */
  --transition: 0.3s ease;

  /* ===== RADIUS ===== */
  --radius: 6px;
  --radius-lg: 10px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ===== CONTAINERS ===== */
.full-container {
  width: 100%;
  padding-left: var(--full-padding-mobile);
  padding-right: var(--full-padding-mobile);
}

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--container-padding-mobile) * 2);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding-mobile);
  padding-right: var(--container-padding-mobile);
}

.middle-container {
  width: 100%;
  padding-left: var(--container-padding-mobile);
  padding-right: var(--container-padding-mobile);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .full-container {
    padding-left: var(--full-padding-desktop);
    padding-right: var(--full-padding-desktop);
  }

  .container {
    max-width: calc(var(--container) + var(--full-padding-desktop) * 2);
    padding-left: var(--full-padding-desktop);
    padding-right: var(--full-padding-desktop);
  }

  .middle-container {
    max-width: calc(1440px + var(--full-padding-desktop) * 2);
    padding-left: var(--full-padding-desktop);
    padding-right: var(--full-padding-desktop);
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 24px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), opacity var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

/* ===== BTN-LINK ===== */
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.56px;
  color: var(--blue);
  transition: opacity var(--transition), color var(--transition);
  margin-top: auto;
}

.btn-link:hover {
  opacity: 0.75;
}

.btn--primary {
  background-color: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
}

.btn--primary:hover {
  opacity: 0.9;
}

.btn--secondary {
  background-color: var(--blue);
  color: var(--white);
  border: 1px solid var(--blue);
}

.btn--secondary:hover {
  opacity: 0.9;
}

.btn--outlined {
  background-color: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
}

.btn--outlined:hover {
  background-color: var(--blue);
  color: var(--white);
}

.btn--white-outlined {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn--white-outlined:hover {
  background-color: var(--white);
  color: var(--dark);
}

@media (min-width: 992px) {
  .btn {
    height: 51px;
    padding: 0 30px;
    font-size: 16px;
  }
}

/* ===== EYEBROW ===== */
.eyebrow {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eyebrow__text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  color: var(--dark-60);
  line-height: 1;
}

.eyebrow__line {
  width: 45px;
  height: 2px;
  background-color: #1990ff;
  border: none;
}

@media (min-width: 992px) {
  .eyebrow__text {
    font-size: 14px;
  }
}

/* ===== SECTION TITLE ===== */
.featured-cards__header h2,
.cases-studies h2,
.operation-area-block h2,
.steps-block__header h2,
.services-block__left h2,
.articles-carousel h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--dark);
}

@media (min-width: 992px) {
  .featured-cards__header h2,
  .cases-studies h2,
  .operation-area-block h2,
  .steps-block__header h2,
  .services-block__left h2,
  .articles-carousel h2 {
    font-size: 48px;
    letter-spacing: -1px;
    line-height: 1;
  }
}

/* ======================================================
   HEADER / NAVBAR
   ====================================================== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 999;
}

.site-header .full-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.site-header__logo {
  flex-shrink: 0;
}

.site-header__logo img {
  width: 140px;
  height: auto;
}

/* Mobile hamburger – 2 lines, blue, 3px thick, 35px wide, 7px gap */
.site-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 35px;
  height: 30px;
  cursor: pointer;
  z-index: 110;
}

.site-header__hamburger span {
  display: block;
  width: 35px;
  height: 3px;
  background-color: var(--blue);
  transition: transform var(--transition);
  border-radius: 2px;
}

.site-header__hamburger.is-open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.site-header__hamburger.is-open span:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
}

/* Header actions (language + CTA) */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Language switch */
.language-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--border);
    border-radius: var(--radius);
    padding: 4px 8px 4px 4px;
    height: 30px;
    cursor: pointer;
}

.language-switch__flag {
  width: 29px;
  height: 22px;
  border-radius: 4px;
  overflow: hidden;
}

.language-switch__flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.language-switch__arrow {
  width: 10px;
  height: 6px;
  transition: transform var(--transition);
}

.language-switch__arrow polyline {
  fill: none;
  stroke: var(--dark);
  stroke-width: 1.5;
}

.language-switch.is-open .language-switch__arrow {
  transform: rotate(180deg);
}

/* Language dropdown */
.language-switch {
  position: relative;
}

.language-switch__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 6px 0;
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 200;
}

.language-switch.is-open .language-switch__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-switch__option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: background-color var(--transition);
}

.language-switch__option:hover {
  background-color: var(--light-bg);
}

.language-switch__option.is-active {
  font-weight: 600;
}

.language-switch__option img {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
}

/* Header CTA - hidden on mobile */
.site-header__cta {
  display: none;
}

/* Nav - mobile overlay */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: var(--white);
  z-index: 105;
  padding: 90px var(--full-padding-mobile) 30px;
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
}

.main-nav.is-open {
  transform: translateX(0);
}

.main-nav .menu {
  display: flex;
  flex-direction: column;
}

.main-nav .menu-item {
  border-bottom: 1px solid var(--border);
}

.main-nav .menu-item > a {
  display: flex;
  align-items: center;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.36px;
}

.main-nav .menu-item-has-children {
  position: relative;
}

.main-nav .menu-item-has-children > .submenu-toggle {
  position: absolute;
  right: 0;
  top: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.main-nav .menu-item-has-children > .submenu-toggle svg {
  width: 10px;
  height: 6px;
  transition: transform var(--transition);
  fill: none;
  stroke: var(--dark);
  stroke-width: 2;
}

.main-nav .menu-item-has-children.is-open > .submenu-toggle svg {
  transform: rotate(180deg);
}

.main-nav .sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.main-nav .menu-item-has-children.is-open > .sub-menu {
  max-height: 500px;
}

.main-nav .sub-menu .menu-item > a {
  padding: 12px 0 12px 20px;
  font-size: 16px;
  font-weight: 500;
}

.main-nav .sub-menu .sub-menu .menu-item > a {
  padding-left: 40px;
  font-size: 15px;
  font-weight: 400;
}

@media (min-width: 1280px) {
  .site-header .full-container {
    height: 110px;
  }

  .site-header__logo img {
    width: 190px;
  }

  .site-header__hamburger {
    display: none;
  }

  .site-header__cta {
    display: inline-flex;
  }

  /* Desktop nav */
  .main-nav {
    position: static;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
    transform: none;
    overflow: visible;
  }

  .main-nav .menu {
    flex-direction: row;
    gap: 32px;
  }

  .main-nav .menu-item {
      border-bottom: none;
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 5px;
  }

  .main-nav .menu-item > a {
    padding: 10px 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.36px;
  }

  .main-nav .menu-item > a:hover {
    color: var(--blue);
  }

  .main-nav .menu-item-has-children > .submenu-toggle {
    position: static;
    width: auto;
    height: auto;
    margin-left: 4px;
    display: inline-flex;
  }

  .main-nav .menu-item-has-children > a {
    display: inline-flex;
  }

  /* Desktop submenu */
  .main-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: -15px;
    min-width: 220px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }

  .main-nav .menu-item-has-children:hover > .sub-menu,
  .main-nav .menu-item-has-children:focus-within > .sub-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }

  .sub-menu .menu-item, .sub-menu .menu-item a{
    width: 100%;
  }

  .main-nav .sub-menu .menu-item > a {
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 500;
  }

  .main-nav .sub-menu .menu-item > a:hover {
    background-color: var(--light-bg);
    color: var(--blue);
  }

  /* Sub-submenu */
  .main-nav .sub-menu .sub-menu {
    top: 0;
    left: 100%;
  }

  .main-nav .sub-menu .menu-item-has-children:hover > .sub-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }

  .main-nav .sub-menu .sub-menu .menu-item > a {
    padding-left: 20px;
    font-size: 15px;
  }
}

/* ======================================================
   HERO SECTION
   ====================================================== */
.hero-block {
    position: relative;
    background-color: var(--light-bg);
    overflow: hidden;
    padding: 40px 0 40px;
    display: flex;
    align-items: center;
}

.hero-block__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-block__bg canvas {
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.hero-block .middle-container {
  position: relative;
  z-index: 2;
}

.hero-block__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.hero-block__content h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--dark);
}

.hero-block__content h1 span {
  color: var(--blue);
}

.hero-block__content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--dark-60);
  letter-spacing: -0.36px;
}

.hero-block__content p strong {
  font-weight: 700;
  color: var(--dark-60);
}

.hero-block__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-block__media-wrap {
  flex: 1;
}

.hero-block__media {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 12px -6px rgba(0, 0, 0, 0.06);
  aspect-ratio: 690 / 420;
  will-change: transform;
}

.hero-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.hero-block__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  z-index: 3;
  cursor: pointer;
  transition: transform var(--transition);
}

.hero-block__play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.hero-block__play img {
  width: 100%;
  height: 100%;
}

.hero-block__globe {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80vw;
  height: auto;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
}

@media (min-width: 992px) {
  .hero-block {
    padding: 40px 0 0;
    min-height: 70vh;
  }

  .hero-block .middle-container {
    display: flex;
    align-items: center;
    gap: 60px;
  }

  .hero-block__content {
    flex: 0 0 50%;
    max-width: 591px;
    gap: 30px;
    margin-bottom: 0;
  }

  .hero-block__content h1 {
    font-size: 58px;
    line-height: 1;
    letter-spacing: -1px;
  }

  .hero-block__content p {
    font-size: 18px;
  }

  .hero-block__buttons {
    gap: 15px;
  }

  .hero-block__media-wrap {
    flex: 1;
  }

  .hero-block__media {
    flex: unset;
  }

  .hero-block__play {
    width: 72px;
    height: 72px;
  }

  .hero-block__globe {
    width: 50vw;
    height: auto;
  }

  .hero-block__globe img {
    width: 100%;
  }
}

/* ======================================================
   STATS SECTION
   ====================================================== */
.stats-block {
  background-color: #e9edf4;
  padding: 0;
}

.stats-block__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 25px;
}

.stats-block__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 25px 15px;
  border-bottom: 1px solid var(--white);
  border-right: 1px solid var(--white);
}

.stats-block__item:nth-child(2n) {
  border-right: none;
}

.stats-block__item:last-child {
  grid-column: 1 / -1;
  border-right: none;
  border-bottom: none;
  border-top: 1px solid var(--white);
}

.stats-block__item:nth-child(3),
.stats-block__item:nth-child(4) {
  border-bottom: none;
}

.stats-block__number {
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--dark);
  white-space: nowrap;
  margin-bottom: 6px;
  text-align: center;
}

.stats-block__label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.36px;
  color: var(--dark);
}

@media (min-width: 992px) {
  .stats-block__list {
      display: flex;
      flex-wrap: nowrap;
      justify-content: space-between;
      height: 200px;
      align-items: center;
      padding: 0;
  }

  .stats-block__item {
    flex: 1 1 auto;
    gap: 15px;
    text-align: left;
    padding: 0 30px;
    border-bottom: none;
    border-right: none;
    border-top: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-block__item:nth-child(2n) {
    border-right: none;
  }

  .stats-block__item:last-child {
      grid-column: unset;
      border-top: none;
  }

  .stats-block__number {
    font-size: 50px;
    letter-spacing: -2px;
    margin-bottom: 0;
    text-align: left;
  }

  .stats-block__label {
    font-size: 18px;
  }
}

/* ======================================================
   COUNTRIES SECTION – Swiper Marquee
   ====================================================== */
.countries-block {
  background-color: var(--white);
  height: 160px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid #e3e5eb;
  width: 100%;
}

.countries-block__inner {
  width: 100%;
  overflow: hidden;
}

.countries-block__track,
.countries-block__track.marquee6k__copy {
  display: inline-flex !important;
  flex-direction: row;
  align-items: center;
  gap: 100px;
  padding-right: 100px;
  vertical-align: middle;
}

.countries-block__item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.countries-block__flag {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.countries-block__flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.countries-block__name {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
}

@media (min-width: 992px) {
  .countries-block__track {
    gap: 100px;
    padding-right: 100px;
  }

  .countries-block__item {
    gap: 14px;
  }

  .countries-block__flag {
    width: 40px;
    height: 40px;
  }

  .countries-block__name {
    font-size: 17px;
  }
}

/* ======================================================
   FEATURED CARDS SECTION
   ====================================================== */
.featured-cards {
  padding: 50px 0;
  position: relative;
}

.featured-cards:after {
    content: "";
    background: linear-gradient(180deg, #FFF 0%, #F6F9FF 100%);
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: 0;
    z-index: -999;
}

.featured-cards__header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.featured-cards__grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  margin-right: calc(var(--full-padding-mobile) * -1);
  padding-right: var(--full-padding-mobile);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 10px;
}

.featured-cards__grid::-webkit-scrollbar {
  display: none;
}

.featured-cards__card {
  flex: 0 0 calc(80% - 8px);
  scroll-snap-align: start;
  background-color: var(--blue);
  border-radius: var(--radius-lg);
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 200px;
}

.featured-cards__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.featured-cards__card-icon {
  width: 44px;
  height: 44px;
  background-color: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  box-shadow: 0 12px 12px -6px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.featured-cards__card-icon img {
  width: 30px;
  height: 30px;
}

.featured-cards__card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.44px;
  line-height: 1.2;
}

.featured-cards__card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--white);
  opacity: 0.7;
  letter-spacing: -0.36px;
}

.featured-cards__card--alt {
  background-color: #1990ff;
}

.featured-cards__card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.featured-cards__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.18);
}

.featured-cards .btn-link {
  color: var(--white);
}

.featured-cards .btn-link:hover {
  opacity: 0.75;
}


@media (min-width: 992px) {
  .featured-cards {
    padding: 80px 0;
  }

  .featured-cards__header {
    margin-bottom: 40px;
  }

  .featured-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow: visible;
  }

  .featured-cards__card {
    flex: none;
    padding: 30px 20px;
    gap: 29px;
    min-height: 249px;
  }

  .featured-cards__card-icon {
    width: 50px;
    height: 50px;
  }

  .featured-cards__card-icon img {
    width: 36px;
    height: 36px;
  }

  .featured-cards__card h3 {
    font-size: 22px;
  }

  .featured-cards__card p {
    font-size: 18px;
  }

  .featured-cards__card-link {
    font-size: 16px;
  }

  .featured-cards__grid {
    margin-right: 0;
    padding-right: 0;
  }
}

/* ======================================================
   CASES STUDIES / MEDIA-TEXT
   ====================================================== */
.media-text {
  padding: 50px 0;
}

.media-text__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.media-text__header-top {
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* eyebrow + h2 + p spacing handled by gap */
}

.media-text__header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.media-text__header-top p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--dark-60);
  letter-spacing: -0.36px;
}

.media-text__body {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.media-text__body.is-right {
  flex-direction: column;
}

.media-text__image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 12px -6px rgba(0, 0, 0, 0.06);
  aspect-ratio: 641 / 420;
}

.media-text__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.media-text__text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.media-text__text h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--dark);
}

.media-text__text h3 span {
  color: var(--blue);
}

.media-text__tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.media-text__tag {
  background-color: var(--gray-bg);
  border-radius: var(--radius);
  padding: 0 15px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-60);
  letter-spacing: -0.3px;
}

.media-text__text p,
.services-block__left p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--dark-60);
  letter-spacing: -0.36px;
}

/* Nav arrows */
.slider-nav {
  display: flex;
  gap: 5px;
}

.slider-nav__btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background-color: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition);
}

.swiper-button-disabled {
    opacity: 0.6;
}

.swiper-button-disabled:hover img {
    filter: unset!important;
}

.swiper-button-disabled:hover {
    background: var(--gray-bg)!important;
}

.slider-nav__btn--prev {
  background-color: rgba(233, 237, 244, 0.5);
}

.slider-nav__btn:hover {
  background-color: var(--blue);
}

.slider-nav__btn:hover img {
  filter: brightness(0) invert(1);
}

.slider-nav__btn img {
  width: 24px;
  height: 24px;
}

.slider-nav__btn--prev img {
  transform: rotate(180deg);
}

/* Dots */
.cases-studies__dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;
}

.cases-studies__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gray-bg);
  cursor: pointer;
  transition: background-color var(--transition);
}

.cases-studies__dot.is-active {
  background-color: var(--blue);
}

@media (min-width: 992px) {
  .media-text {
    padding: 80px 0;
  }

  .media-text__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 35px;
  }

  .media-text__header-actions {
    margin-top: 0;
    flex-shrink: 0;
  }

  .media-text__header-top p {
    font-size: 18px;
    max-width: 564px;
  }

  .media-text__body {
    flex-direction: row;
    gap: 60px;
    align-items: center;
  }

  .media-text__body.is-right {
    flex-direction: row-reverse;
  }

  .media-text__image {
    flex: 0 0 50%;
    max-width: 641px;
  }

  .media-text__text {
    flex: 1;
    gap: 20px;
  }

  .cases-btn {
    width: auto;
    align-self: flex-start;
  }

  .media-text__text h3 {
    font-size: 30px;
    line-height: 1.2;
  }

  .media-text__text p, .services-block__left p {
      font-size: 18px;
      width: 80%;
  }

  .slider-nav__btn {
    width: 50px;
    height: 50px;
  }
}

/* Cases studies wrapper */
.cases-studies {
  background-color: var(--light-bg);
}

/* ======================================================
   OPERATION AREA SECTION
   ====================================================== */
.operation-area-block {
  padding: 50px 0;
}

.operation-area-block > .container {
  position: relative;
}

.operation-area-block .media-text__body {
  flex-direction: column;
}

.operation-area-block__countries {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.operation-area-block__country {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background-color var(--transition);
    position: relative;
    border: 1px solid var(--border);
}

.operation-area-block__country:hover {
  background-color: var(--light-bg);
}

.operation-area-block__country-flag {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.operation-area-block__country-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.operation-area-block__country-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
}

.operation-area-block__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.operation-area-block__map img {
  width: 100%;
  height: auto;
}

/* Country tooltip */
.country-tooltip {
  position: absolute;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  padding: 16px 20px;
  min-width: 220px;
  z-index: 100;
  display: none;
  font-size: 14px;
  line-height: 1.5;
  pointer-events: none;
}

/* Mobile: full width of container */
@media (max-width: 991.98px) {
  .country-tooltip {
      left: 25px !important;
      right: 25px !important;
      width: calc(100% - 50px);
      min-width: 0;
      padding: 16px 20px 16px 20px;
      pointer-events: auto;
  }

  .country-tooltip__close {
    display: flex !important;
  }
}

/* Desktop: follow cursor, no close button */
@media (min-width: 992px) {
  .country-tooltip {
    pointer-events: none;
    min-width: 260px;
    max-width: 320px;
  }

  .country-tooltip__close {
    display: none !important;
  }
}

.country-tooltip.is-visible {
  display: block;
}

.country-tooltip__close {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: #e9edf4;
  border-radius: 0 9px 0 9px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
}

.country-tooltip__close img {
  width: 20px;
  height: 20px;
  display: block;
}

.country-tooltip__arrow {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--white);
  transition: left 0.15s ease;
}

.country-tooltip h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.country-tooltip p {
  font-size: 14px;
  color: var(--dark-60);
}

@media (min-width: 992px) {
  .operation-area-block {
    padding: 80px 0;
  }

  .operation-area-block .media-text__body {
      flex-direction: row;
      gap: 60px;
      margin-top: -80px;
  }

  .operation-area-block__left {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .operation-area-block__countries {
    gap: 15px;
  }

  .operation-area-block__country {
    padding: 12px 20px;
  }

  .operation-area-block__map {
    flex: 1;
  }
}

/* ======================================================
   STEPS BLOCK (Knowledge Hub)
   ====================================================== */
.steps-block {
  padding: 50px 0;
}

.steps-block__header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.steps-block__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.steps-block__row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.steps-block__row .steps-block__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 4px 0;
}

.steps-block__row .steps-block__arrow img {
  transform: rotate(90deg);
  width: 12px;
  height: 24px;
  display: block;
}

.steps-block__card {
    background-color: var(--gray-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    cursor: pointer;
    transition: border-color var(--transition);
    width: 100%;
    box-sizing: border-box;
}

.steps-block__card:hover {
  border-color: var(--blue);
}

.steps-block__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Toggle arrow — pushed to right, rotates 90° when open */
.steps-block__card-toggle {
  margin-left: auto;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  transform: rotate(-90deg);
}

.steps-block__card.is-open .steps-block__card-toggle {
  transform: rotate(90deg);
}

.steps-block__card-number {
    width: 44px;
    height: 44px;
    background-color: var(--blue);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    flex-shrink: 0;
}

.steps-block__card-header h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.44px;
}

/* Mobile: __card-cap is transparent — card itself provides border/bg */
.steps-block__card-cap {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

/* Mobile: preview text hidden — full desc shown via accordion */
.steps-block__card-preview {
  display: none;
}

.steps-block__card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  position: static;
}

.steps-block__card.is-open .steps-block__card-body {
  max-height: 300px;
  padding-top: 15px;
}

.steps-block__card-body p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--dark-60);
  letter-spacing: -0.36px;
}

/* Mobile-first: all arrows centered, rotated 90deg (pointing down) */
.steps-block__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 4px 0;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}

.steps-block__arrow img {
  transform: rotate(90deg);
  width: 12px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}

/* Between-rows arrow: mobile only by default */
.steps-block__arrow--between {
  display: flex;
}

.steps-block__footer {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

@media (min-width: 992px) {
  .steps-block {
    padding: 0px 0 80px;
  }

  .steps-block__grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Row: cards + arrows side by side */
  .steps-block__row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }

  /* Desktop: arrows inside rows become horizontal connectors */
  .steps-block__row .steps-block__arrow {
    width: 36px;
    height: 162px;
    padding: 0;
    flex-shrink: 0;
  }

  .steps-block__row .steps-block__arrow img {
    transform: none;
  }

  /* Between-rows arrow: hidden on desktop */
  .steps-block__arrow--between {
    display: none !important;
  }

  /* Toggle icon hidden on desktop — hover handles expand */
  .steps-block__card-toggle {
    display: none;
  }

  /* Bottom row: 2 cards centered */
  .steps-block__row--bottom {
    justify-content: center;
  }

  .steps-block__row--bottom .steps-block__card {
    flex: 0 0 calc((100% - 36px - 72px) / 3);
    max-width: calc((100% - 36px - 72px) / 3);
  }

  /* Cards in top row: 1/3 of available width */
  .steps-block__row:not(.steps-block__row--bottom) .steps-block__card {
    flex: 1 1 0;
  }

  .steps-block__card-number {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .steps-block__card-header h3 {
    font-size: 22px;
  }

  .steps-block__card-body p {
    font-size: 18px;
  }

  .steps-block__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 162px;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
  }

  .steps-block__arrow img {
    width: 12px;
    height: 24px;
    display: block;
  }

  /* Desktop: __card wrapper has NO border/bg — __card-cap is the visual element */
  .steps-block__card {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    /* keeps its flex-item size but card-cap can overflow */
    position: relative;
    z-index: 1;
  }

  .steps-block__card:hover {
    z-index: 20;
  }

  /* __card-cap: positioned absolute inside __card, sized to match __card */
  .steps-block__card-cap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--gray-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    z-index: 5;
    transition:
      background-color 0.25s ease,
      border-color 0.25s ease,
      box-shadow 0.25s ease;
  }

  /* Invisible clone of __card-cap content — keeps __card height in flow */
  .steps-block__card::after {
    content: '';
    display: block;
    /* Match __card-cap height: padding top+bottom (40px) + header (~50px) + preview (~2 lines ~52px) */
    height: 162px;
    visibility: hidden;
    pointer-events: none;
  }

  /* Preview text — 2 lines clamped */
  .steps-block__card-preview {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark-60);
    letter-spacing: -0.3px;
    margin-top: 10px;
  }

  /* __card-body: collapsed inside __card-cap */
  .steps-block__card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    position: static;
    padding: 0;
  }

  /* Hover: white, border #E9EDF4, shadow, body drops down freely */
  .steps-block__card:hover .steps-block__card-cap {
    background-color: var(--white);
    border-color: #E9EDF4;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    z-index: 20;
  }

  .steps-block__card:hover .steps-block__card-preview {
    -webkit-line-clamp: unset !important;
    line-clamp: unset !important;
    display: block;
    overflow: visible;
  }

  .steps-block__card:hover .steps-block__card-body {
    max-height: 300px;
    padding-top: 12px;
  }

  .steps-block__card-body p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-60);
  }
}

/* ======================================================
   SERVICES BLOCK (piramida)
   ====================================================== */
.services-block {
  padding: 50px 0;
  background-color: var(--light-bg);
}

.services-block .media-text__body {
  flex-direction: column;
}

.services-block__left {
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* eyebrow + h2 + p spacing via gap */
}

.services-block .btn {
    width: fit-content;
}

.services-block__cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-block__card {
    background-color: #E9EDF4;
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.services-block__card:nth-child(1) { width: 100%; }
.services-block__card:nth-child(2) { width: calc(100% - 25px); }
.services-block__card:nth-child(3) { width: calc(100% - 50px); }

.services-block__card-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: #1990FF;
    margin-left: -30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-block__card-icon img {
  width: 30px;
  height: 30px;
}

.services-block__card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.services-block__card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  color: var(--dark-60);
}

.services-block__card-label-line {
  width: 45px;
  height: 2px;
  background-color: #1990ff;
  margin-top: 6px;
}

.services-block__card-content p {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
}

@media (min-width: 992px) {
  .services-block {
    padding: 80px 0;
  }

  .services-block .media-text__body {
    flex-direction: row;
    gap: 60px;
  }

  .services-block__left {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
  }

  .services-block__cards {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
    gap: 20px;
    align-items: flex-start;
    display: flex;
  }

  .services-block__card {
    padding: 26px 30px;
  }

  .services-block__card:nth-child(1) { width: 100%; }
  .services-block__card:nth-child(2) { width: calc(100% - 40px); }
  .services-block__card:nth-child(3) { width: calc(100% - 80px); }
  .services-block__card-icon {
      width: 40px;
      height: 40px;
      margin-left: -50px;
  }

  .services-block__card-label {
    font-size: 14px;
  }

  .services-block__card-content p {
    font-size: 30px;
  }
}

/* ======================================================
   CTA SECTION
   ====================================================== */
.cta-block {
    position: relative;
    overflow: hidden;
    aspect-ratio: 9 / 11;
    min-height: unset;
    display: flex;
    max-height: 60vh;
    width: 100%;
}

.cta-block__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-block__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

/* 5 overlays on top of the image via pseudo-element */
.cta-block__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(9deg, rgba(0, 0, 0, 0.50) -20.77%, rgba(0, 0, 0, 0.00) 33.86%),
    linear-gradient(268deg, rgba(0, 0, 0, 0.50) -5.5%, rgba(0, 0, 0, 0.00) 46.8%),
    linear-gradient(84deg, rgba(0, 0, 0, 0.50) 5.76%, rgba(0, 0, 0, 0.00) 57.51%),
    linear-gradient(0deg, rgba(54, 84, 254, 0.05) 0%, rgba(54, 84, 254, 0.05) 100%),
    linear-gradient(0deg, rgba(55, 59, 71, 0.70) 0%, rgba(55, 59, 71, 0.70) 100%);
}

.cta-block__overlays {
  display: none;
}

.cta-block .container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 60px;
  padding-bottom: 60px;
}

.cta-block__inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 580px;
}

.cta-block__inner .btn {
    width: auto;
    align-self: flex-start;
    margin-top: 12px;
}

.cta-block__label .eyebrow__text {
  color: rgba(255, 255, 255, 0.6);
}

.cta-block__inner h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: var(--white);
}

.cta-block__inner h2 strong {
  font-weight: 800;
}

.cta-block__inner p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.36px;
}

@media (min-width: 992px) {
  .cta-block {
      aspect-ratio: unset;
      min-height: 640px;
      align-items: center;
      max-height: unset;
  }

  .cta-block .container {
    height: auto;
    display: block;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .cta-block__inner h2 {
    font-size: 46px;
    letter-spacing: -1px;
  }

  .cta-block__inner p {
    font-size: 18px;
  }
}

/* ======================================================
   ARTICLES CAROUSEL
   ====================================================== */
.articles-carousel {
  padding: 50px 0;
}

.articles-carousel .articles-carousel__header .btn {
    display: none;
}

.articles-carousel__header {
  margin-bottom: 30px;
}

.articles-carousel__header-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.articles-carousel__header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.articles-carousel__grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-right: calc(var(--full-padding-mobile) * -1);
  padding-right: var(--full-padding-mobile);
}

.articles-carousel__grid::-webkit-scrollbar {
  display: none;
}

.article-card {
  flex: 0 0 85%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.article-card .btn {
    width: fit-content;
}

.article-card__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 410 / 220;
  margin-bottom: 20px;
}

.article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    scale: 1.02;
}

.article-card__link {
  display: block;
  margin-bottom: 10px;
}

.article-card__link .article-card__image img {
  transition: transform 0.4s ease;
}

.article-card__link:hover .article-card__image img {
  transform: scale(1.06);
}

.article-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark);
  letter-spacing: -0.4px;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.article-card__link h3:hover {
  color: var(--blue);
}

.article-card__date {
    display: inline-flex;
    align-items: center;
    background-color: var(--gray-bg);
    border-radius: var(--radius);
    padding: 0 12px;
    height: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-60);
    letter-spacing: -0.3px;
    margin-bottom: 15px;
    width: fit-content;
}

.article-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--dark-60);
  margin-bottom: 20px;
  flex: 1;
}

.articles-carousel__footer {
  display: flex;
  justify-content: center;
  padding-top: 25px;
  margin-top: 30px;
  border-top: 1px solid #E3E5EB;
}

@media (min-width: 992px) {
  .articles-carousel {
    padding: 80px 0;
  }

  .articles-carousel__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
  }

  .articles-carousel .articles-carousel__header .btn {
    display: flex;
  }

  .articles-carousel__header-top {
    align-items: flex-end;
  }

  .articles-carousel__footer {
    display: none;
  }

  .articles-carousel__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }

  .article-card {
    flex: none;
  }

  .article-card h3 {
    font-size: 22px;
  }

  .article-card p {
    font-size: 18px;
  }

}

/* ======================================================
   FOOTER
   ====================================================== */
.site-footer {
  background-color: var(--dark);
  color: var(--white);
}

/* ---- FOOTER TOP ---- */
.site-footer__top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__top-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 30px 0;
}

.site-footer__logo {
  flex-shrink: 0;
}

.site-footer__logo img {
  width: 70px;
  height: auto;
  display: block;
}

/* Contacts block */
.site-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.site-footer__contacts a:hover {
    color: #1990FF;
}

.site-footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ČEŠTINA: wraps tel + email as row on desktop */
.site-footer__contact-item--cestina {
  flex-direction: column;
  gap: 4px;
}

.site-footer__contact-sub {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-footer__contact-sep--inner {
  display: none;
}

.site-footer__contact-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.site-footer__contact-value {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.3;
  white-space: nowrap;
}

.site-footer__top-cta {
  width: 100%;
}

.site-footer__top-cta .btn {
  width: 100%;
  text-align: center;
}

/* ---- FOOTER BOTTOM ---- */
.site-footer__bottom {
    padding: 60px 0;
}

.site-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Col 1: desc + social */
.site-footer__col--desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-footer__col--desc p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(233, 237, 244, 0.6);
    line-height: 1.5;
    letter-spacing: -0.5px;
    max-width: 300px;
}

.site-footer__social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background-color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color var(--transition);
}

.footer-social-link {
  color: var(--white);
}

.footer-social-link svg {
    display: block;
    height: 22px;
    width: 22px;
}

.footer-social-link:hover {
  background-color: var(--white);
  color: var(--blue);
}

/* Nav cols */
.site-footer__col--nav {
  min-width: 0;
}

.site-footer__col--nav h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    color: #E9EDF4;
    margin-bottom: 0;
}

.site-footer__col--nav h4::after {
  content: '';
  display: block;
  width: 46px;
  height: 1px;
  background-color: var(--blue);
  margin-top: 10px;
  margin-bottom: 16px;
}

.site-footer__bottom-inner ul li a {
    color: rgba(255, 255, 255, 0.6);
}

.site-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__nav-list li a {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 30px;
  display: block;
  transition: color var(--transition);
}

.site-footer__nav-list li a:hover {
    color: #1990FF;
}

/* Offer col: 2 sub-columns on desktop */
.site-footer__nav-double {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ---- FOOTER CREDITS ---- */
.site-footer__credits {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__credits-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 0;
  text-align: center;
}

.site-footer__credits-inner p,
.site-footer__credits-inner p a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__credits-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer__credits-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.site-footer__credits-links a:hover {
    color: #1990FF;
}

.site-footer__credits-links span {
  color: rgba(255, 255, 255, 0.3);
}

@media (min-width: 992px) {
  /* TOP: 170px bar — full-container is positioning context */
  .site-footer__top .full-container {
    position: relative;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-footer__top-inner {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      position: static;
      padding: 0;
      gap: 0;
      justify-content: center;
  }

  .site-footer__logo {
      position: absolute;
      left: 40px;
      top: 50%;
      transform: translateY(-50%);
      padding: 0;
      display: block;
  }

  .site-footer__top-cta {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    padding: 0;
    width: auto;
  }

  /* contacts fill middle — use container max-width and auto margins */
  .site-footer__contacts {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      flex-direction: row;
      align-items: center;
      gap: 40px;
      min-width: 0;
  }

  .site-footer__contact-item {
      padding: 0 50px;
      gap: 6px;
      min-width: 0;
  }

  .site-footer__contact-item:first-child {
    padding-left: 0;
  }

  /* ČEŠTINA: phone | separator | email in one row */
  .site-footer__contact-item--cestina {
      flex-direction: row;
      align-items: flex-end;
      gap: 0;
      padding-right: 0;
  }

  .contact_sep {
    border-left: 1px solid #707482;
    width: 1px;
    height: 30px;
  }

  .site-footer__contact-sub {
    flex: 1;
    padding: 0 20px;
  }

  .site-footer__contact-sub:first-child {
    padding-left: 0;
  }

  .site-footer__contact-sep--inner {
    display: block;
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
    align-self: center;
  }

  .site-footer__top-cta {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0;
    width: auto;
  }

  .site-footer__top-cta .btn {
    width: auto;
    white-space: nowrap;
  }

  /* BOTTOM: 5-column grid */
  .site-footer__bottom-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 100px;
  }
  .site-footer__col--desc {
    flex: 0 0 280px;
    max-width: 280px;
  }

  .site-footer__col--offer {
    flex: 0 0 340px;
  }

  .site-footer__nav-double {
    flex-direction: column;
    gap: 0;
  }

  /* CREDITS: single row */
  .site-footer__credits-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 0;
  }
}

@media (min-width: 992px) and (max-width: 1279px) {
  .site-footer__col--nav {
    flex: 1 1 0;
  }

  .site-footer__col--offer {
    flex: 1 1 0;
  }

  .site-footer__contact-item {
    padding: 0;
  }

  .site-footer__logo {
    opacity: 0;
  }
  .site-footer__bottom-inner {
    gap: 30px;
  }
  
}

@media (min-width: 1280px) {
  .site-footer__nav-double {
    flex-direction: row;
    gap: 20px;
  }

  .site-footer__nav-double .site-footer__nav-list {
    flex: 1;
  }
}

@media (min-width: 1400px) {
  .stats-block__item {
    flex-direction: row;
  }
}