@charset "UTF-8";
/*FONT*/
/*COLORS*/
/*TYPOGRAPHY*/
/*PROPORTIONS*/
/*BREAKPOINTS*/
:root {
  --container-width: 1332px;
  --size-main: 68px;
  --size-h1: 48px;
  --size-h2: 40px;
  --size-h3: 26px;
  --size-h4: 20px;
  --size-bigger: 18px;
  --size-body: 16px;
  --size-smaller: 15px;
}

@media (max-width: 1600px) {
  :root {
    --size-main: 52px;
  }
}
@media (max-width: 1439px) {
  :root {
    --container-width: 1100px;
    --size-main: 46px;
    --size-h2: 36px;
  }
}
@media (max-width: 1199px) {
  :root {
    --container-width: 900px;
    --size-main: 40px;
  }
}
@media (max-width: 991px) {
  :root {
    --container-width: calc(100% - 48px);
    --size-main: 32px;
    --size-h2: 32px;
    --size-h3: 24px;
  }
}
@media (max-width: 767px) {
  :root {
    --size-main: 28px;
    --size-h2: 28px;
    --size-h3: 19px;
    --size-bigger: 16px;
    --size-body: 14px;
    --size-smaller: 13px;
  }
}
@media (max-width: 499px) {
  :root {
    --size-main: 24px;
    --size-h2: 24px;
  }
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

img {
  max-width: 100%;
}

.container {
  width: var(--container-width);
  max-width: 1920px;
  margin-inline: auto;
}
.container.wide {
  width: calc(100% - 72px);
  max-width: 1850px;
}
@media (max-width: 767px) {
  .container.wide {
    width: calc(100% - 48px);
  }
}

p {
  margin: 0 0 16px;
}

.subtitle {
  max-width: 728px;
  margin-inline: auto;
  text-align: center;
}

.gradient {
  position: relative;
  max-width: 1920px;
  margin-inline: auto;
  z-index: 1;
  background: linear-gradient(180deg, #FFFFFF 0%, #E5E9F1 100%);
}
.gradient.anchor {
  position: relative;
}
.gradient.anchor > * {
  position: relative;
  z-index: 1;
}
.gradient.anchor::before {
  display: inline-block;
  content: "";
  position: absolute;
  width: 800px;
  height: 1000px;
  left: 0;
  bottom: 20%;
  mask: url("/images/anchor.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #E5E9F1;
}

.last {
  padding-bottom: 360px;
}

.limited {
  overflow-x: hidden;
}

.introduction {
  position: relative;
  max-width: 1920px;
  margin-inline: auto;
  text-align: center;
  color: #fff;
  /*
  &::after {
      display: block;
      content: "";

      aspect-ratio: 2057/299;
      width: 100%;

      background-image: url("/images/waves.svg");
      background-size: cover;
      background-color: #000B22;
  }
  */
}
.introduction-inner {
  position: relative;
  padding-inline: 24px;
}
.introduction.big .introduction-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 260px 200px;
  margin-top: -80px;
  background-image: url("/images/introduction-bg1.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #000B22;
}
@media (max-width: 1600px) {
  .introduction.big .introduction-inner {
    padding-block: 180px 160px;
  }
}
@media (max-width: 1439px) {
  .introduction.big .introduction-inner {
    padding-block: 160px 80px;
  }
}
@media (max-width: 1199px) {
  .introduction.big .introduction-inner {
    padding-block: 120px;
  }
}
@media (max-width: 991px) {
  .introduction.big .introduction-inner {
    padding-block: 120px 60px;
  }
}
@media (max-width: 767px) {
  .introduction.big .introduction-inner {
    padding-block: 80px 60px;
    margin-top: -60px;
  }
}
@media (max-width: 499px) {
  .introduction.big .introduction-inner {
    padding-block: 120px;
  }
}
.introduction.big .introduction-inner h1 {
  color: #fff;
}
.introduction.small {
  margin-top: -80px;
  background-color: #000B22;
}
@media (max-width: 767px) {
  .introduction.small {
    margin-top: -60px;
  }
}
.introduction.small .introduction-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  column-gap: 48px;
  padding-block: 130px 20px;
}
@media (max-width: 767px) {
  .introduction.small .introduction-inner {
    align-items: center;
    flex-direction: column;
    padding-top: 80px;
  }
}
.introduction.small .introduction-inner__text {
  text-align: left;
}
@media (max-width: 767px) {
  .introduction.small .introduction-inner__text {
    text-align: center;
  }
}
.introduction.small .introduction-inner__image {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
}
@media (max-width: 1199px) {
  .introduction.small .introduction-inner__image {
    width: 160px;
    height: 160px;
  }
}
@media (max-width: 991px) {
  .introduction.small .introduction-inner__image {
    display: none;
  }
}
@media (max-width: 767px) {
  .introduction.small .introduction-inner__image {
    display: block;
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }
}
.introduction.small .introduction-inner__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.introduction.small .introduction-inner .btn-holder {
  margin-left: auto;
}
@media (max-width: 767px) {
  .introduction.small .introduction-inner .btn-holder {
    margin-left: 0;
  }
}
.introduction.small .introduction-inner h1 {
  font-size: var(--size-h2);
  color: #fff;
}
@media (max-width: 767px) {
  .introduction.small .introduction-inner h1 {
    margin-bottom: 16px;
  }
}
.introduction.small .introduction-inner p:last-child {
  margin-bottom: 0;
}
.introduction h1 {
  margin: 0 0 32px;
  font-size: var(--size-main);
  text-transform: uppercase;
}
.introduction p {
  max-width: 552px;
  font-size: var(--size-bigger);
  line-height: 1.47;
  color: #BFC9DF;
}
@media (max-width: 991px) {
  .introduction p {
    font-size: var(--size-body);
  }
}
.introduction .btn-holder {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 20px;
  margin-top: 40px;
}
@media (max-width: 1600px) {
  .introduction .btn-holder {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .introduction .btn-holder a {
    justify-content: space-between;
    min-width: 280px;
  }
}
@media (max-width: 499px) {
  .introduction .btn-holder a {
    width: 100%;
  }
}
.introduction .badges {
  display: flex;
  align-items: center;
  column-gap: 20px;
  position: absolute;
  bottom: 20px;
}
@media (max-width: 1439px) {
  .introduction .badges {
    bottom: 0px;
  }
}
@media (max-width: 991px) {
  .introduction .badges {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 20px;
  }
}
.introduction .badges .badge a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid #1B2E56;
  border-radius: 4px;
}
@media (max-width: 1199px) {
  .introduction .badges .badge.shoptet-premium {
    max-width: 56px;
  }
}
.introduction .badges .badge.shoptet-premium a {
  border-radius: 50%;
}
@media (max-width: 1199px) {
  .introduction .badges .badge.shoptet-golden {
    max-width: 140px;
  }
}

.swiper-buttons__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.swiper-buttons__wrapper .swiper-button-prev,
.swiper-buttons__wrapper .swiper-button-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 76px;
  height: 76px;
  margin-top: 0;
  background-color: #E5E9F1;
  opacity: 1;
  border-radius: 10px;
}
@media (max-width: 1600px) {
  .swiper-buttons__wrapper .swiper-button-prev,
  .swiper-buttons__wrapper .swiper-button-next {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 767px) {
  .swiper-buttons__wrapper .swiper-button-prev,
  .swiper-buttons__wrapper .swiper-button-next {
    width: 37px;
    height: 38px;
  }
}
.swiper-buttons__wrapper .swiper-button-prev::after,
.swiper-buttons__wrapper .swiper-button-next::after {
  content: "";
  width: 14px;
  height: 22px;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  mask-image: url("/images/chevron-right.svg");
  -webkit-mask-image: url("/images/chevron-right.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #2B2B2B;
}
@media (max-width: 767px) {
  .swiper-buttons__wrapper .swiper-button-prev::after,
  .swiper-buttons__wrapper .swiper-button-next::after {
    width: 8px;
    height: 12px;
  }
}
.swiper-buttons__wrapper .swiper-button-prev.swiper-button-disabled,
.swiper-buttons__wrapper .swiper-button-next.swiper-button-disabled {
  opacity: 0.37;
}
.swiper-buttons__wrapper .swiper-button-prev::after {
  transform: rotate(180deg);
}

.contact-us {
  position: relative;
  z-index: 1;
}
.contact-us h2 {
  margin: 0 0 16px;
  text-align: center;
}
.contact-us__inner {
  display: flex;
  gap: 28px;
  max-width: 1120px;
  margin-inline: auto;
}
@media (max-width: 1199px) {
  .contact-us__inner {
    align-items: flex-start;
  }
}
@media (max-width: 991px) {
  .contact-us__inner {
    flex-direction: column;
  }
}
.contact-us .call {
  max-width: 428px;
  padding: 28px 36px 40px;
  border-radius: 16px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1019607843);
  background-color: #fff;
}
@media (max-width: 991px) {
  .contact-us .call {
    max-width: 100%;
    padding: 28px;
  }
}
@media (max-width: 499px) {
  .contact-us .call {
    padding: 24px;
  }
}
.contact-us .call > h3 {
  display: flex;
  align-items: center;
  column-gap: 16px;
  margin: 0 0 16px;
}
@media (max-width: 499px) {
  .contact-us .call > h3 img {
    display: none;
  }
}
.contact-us .call a {
  font-weight: 700;
  color: #4CCAAB;
}
.contact-us .call a:hover {
  color: #205AEE;
}
.contact-us .call > div {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E5E9F1;
}
.contact-us .call > div:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.contact-us .call > div p:last-child {
  margin-bottom: 0;
}
.contact-us .write {
  flex-grow: 1;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1019607843);
  background-color: #000B22;
}
@media (max-width: 1199px) {
  .contact-us .write {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .contact-us .write {
    padding: 28px;
  }
}
@media (max-width: 499px) {
  .contact-us .write {
    padding: 24px;
  }
}
.contact-us .write h3 {
  margin: 0 0 28px;
  color: #fff;
}
.contact-us form {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.contact-us form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  width: 100%;
}
@media (max-width: 1199px) {
  .contact-us form .form-row {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 20px;
  }
}
.contact-us form .form-row .form-group {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  width: calc(50% - 14px);
}
@media (max-width: 1199px) {
  .contact-us form .form-row .form-group {
    width: 100%;
  }
}
.contact-us form .form-row .form-group.whole-width {
  width: 100%;
}
.contact-us form .form-row .form-group label {
  font-weight: 500;
  color: #A8B4C7;
}
.contact-us form .form-group.consents {
  flex-direction: row;
  align-items: center;
  column-gap: 12px;
  line-height: 1.25;
}
.contact-us form .form-group.consents label {
  cursor: pointer;
}
.contact-us form .form-group.consents a {
  color: #6AEACA;
}
.contact-us form button[type=submit] {
  border: none;
}
@media (max-width: 499px) {
  .contact-us form button[type=submit] {
    flex-grow: 1;
    justify-content: space-between;
    width: 100%;
  }
}
.contact-us form input[type=text], .contact-us form input[type=email], .contact-us form input[type=phone], .contact-us form input[type=text] {
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid #2C4770;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0509803922);
  background-color: transparent;
  font-weight: 500;
  font-family: "Aleo", serif;
  font-size: var(--size-smaller);
  border-radius: 8px;
  color: #9AA6BD;
}
.contact-us form input[type=text]::placeholder, .contact-us form input[type=email]::placeholder, .contact-us form input[type=phone]::placeholder, .contact-us form input[type=text]::placeholder {
  color: #9AA6BD;
}
.contact-us form input[type=checkbox] {
  display: flex;
  align-items: center;
  column-gap: 12px;
  position: relative;
  appearance: none;
  cursor: pointer;
}
.contact-us form input[type=checkbox]::before {
  display: inline-block;
  content: "";
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #2C4770;
  border-radius: 4px;
}
.contact-us form input[type=checkbox]:checked::before {
  border-color: #fff;
}
.contact-us form input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: #6AEACA;
  border-radius: 2px;
}
.contact-us form textarea {
  min-height: 114px;
  padding: 12px 16px;
  border: 1px solid #2C4770;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0509803922);
  background-color: transparent;
  font-weight: 500;
  font-family: "Aleo", serif;
  font-size: var(--size-smaller);
  border-radius: 8px;
  color: #9AA6BD;
}
.contact-us form textarea::placeholder {
  color: #9AA6BD;
}

.about {
  display: flex;
  align-items: center;
  column-gap: 72px;
  position: relative;
  padding-block: 60px 130px;
  margin-bottom: 80px;
}
@media (max-width: 1600px) {
  .about {
    padding-bottom: 60px;
  }
}
@media (max-width: 1199px) {
  .about {
    flex-direction: column;
    row-gap: 28px;
  }
}
@media (max-width: 767px) {
  .about {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.about::before {
  display: inline-block;
  content: "";
  position: absolute;
  width: calc(100vw - var(--scrollbar-width));
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url("/images/rope2.svg");
  background-size: 600px 100%;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.about > div {
  position: relative;
  width: calc(50% - 36px);
  z-index: 1;
}
@media (max-width: 1199px) {
  .about > div {
    width: 100%;
  }
}
.about-photo img {
  border-radius: 16px;
}
.about-text {
  position: relative;
}
.about-text::before {
  display: inline-block;
  content: "";
  position: absolute;
  width: 400px;
  max-width: 100%;
  height: 66px;
  left: 32px;
  bottom: calc(100% + 60px);
  background-image: url("/images/birds.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1439px) {
  .about-text::before {
    bottom: calc(100% + 12px);
  }
}
@media (max-width: 1199px) {
  .about-text::before {
    width: 300px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .about-text::before {
    width: 200px;
    height: 33px;
  }
}
.about-text h2 {
  margin: 0 0 16px;
}
.about-text p:last-child {
  margin-bottom: 0;
}

.waves-container {
  position: relative;
  overflow: hidden;
  height: 15.62vw;
  min-height: 110px;
  max-height: 300px;
  max-width: 1920px;
  margin-bottom: -2px;
  background-color: #000B22;
}
.waves-container svg {
  display: block;
  position: absolute;
  width: 2140px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.waves-container #wave-blue3 {
  animation: waveCombinedLeft 8s ease-in-out infinite alternate;
  animation-delay: 400s;
}
.waves-container #wave-blue2 {
  animation: waveCombinedRight 10s ease-in-out infinite alternate;
  animation-delay: 200ms;
}
.waves-container #wave-blue1 {
  animation: waveCombinedLeft 9s ease-in-out infinite alternate;
  animation-delay: 0ms;
}

@keyframes waveCombinedLeft {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-100px) translateY(30px);
  }
}
@keyframes waveCombinedRight {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(100px) translateY(30px);
  }
}
@keyframes waveSmallCombinedLeft {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-120px) translateY(-10px);
  }
}
@keyframes waveSmallCombinedRight {
  0% {
    transform: translateX(60px) translateY(20px);
  }
  100% {
    transform: translateX(180px) translateY(0px);
  }
}
.small-waves-container {
  position: relative;
  overflow: hidden;
  width: calc(100vw - var(--scrollbar-width));
  max-width: 1920px;
  left: 50%;
  transform: translateX(-50%);
  height: 125px;
  margin-bottom: -2px;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .small-waves-container {
    height: 60px;
    margin-top: 20px;
  }
}
.small-waves-container svg {
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.small-waves-container #small-wave {
  animation: waveSmallCombinedLeft 6s ease-in-out infinite alternate;
}
.small-waves-container #small-wave__static {
  animation: waveSmallCombinedRight 9s ease-in-out infinite alternate;
}

body {
  font-size: var(--size-body);
  font-family: "Aleo", serif;
  color: #454E60;
  line-height: 1.47;
}

h1,
.h1 {
  font-size: var(--size-h1);
}

h2,
.h2 {
  font-size: var(--size-h2);
}
h2:has(strong),
.h2:has(strong) {
  font-weight: 400;
}
h2 strong,
.h2 strong {
  font-weight: 900;
}

h3,
.h3 {
  font-size: var(--size-h3);
}

h4,
.h4 {
  font-size: var(--size-h4);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
  line-height: 1.3;
  color: #2C3B60;
  text-transform: uppercase;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  width: 100%;
}
@media (max-width: 1199px) {
  .form-row {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 20px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  width: calc(50% - 14px);
}
@media (max-width: 1199px) {
  .form-group {
    width: 100%;
  }
}
.form-group.whole-width {
  width: 100%;
}
.form-group.consents {
  flex-direction: row;
  align-items: center;
  column-gap: 12px;
  line-height: 1.25;
}
.form-group.consents label {
  cursor: pointer;
}
.form-group.consents a {
  color: #6AEACA;
}
.form-group label {
  font-weight: 500;
  color: #A8B4C7;
}

input[type=text],
input[type=email],
input[type=phone],
input[type=tel] {
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid #2C4770;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0509803922);
  background-color: transparent;
  font-weight: 500;
  font-family: "Aleo", serif;
  font-size: var(--size-smaller);
  border-radius: 8px;
  color: #9AA6BD;
  transition: border-color ease 300ms;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=phone]::placeholder,
input[type=tel]::placeholder {
  color: #9AA6BD;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=phone]:focus,
input[type=tel]:focus {
  outline: none;
  border-color: #6AEACA;
}

input[type=checkbox] {
  display: flex;
  align-items: center;
  column-gap: 12px;
  position: relative;
  appearance: none;
  cursor: pointer;
}
input[type=checkbox]::before {
  display: inline-block;
  content: "";
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #2C4770;
  border-radius: 4px;
  transition: border-color ease 300ms;
}
input[type=checkbox]:checked::before {
  border-color: #fff;
}
input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: #6AEACA;
  border-radius: 2px;
}

textarea {
  min-height: 114px;
  padding: 12px 16px;
  border: 1px solid #2C4770;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0509803922);
  background-color: transparent;
  font-weight: 500;
  font-family: "Aleo", serif;
  font-size: var(--size-smaller);
  border-radius: 8px;
  color: #9AA6BD;
  resize: vertical;
  transition: border-color ease 300ms;
}
textarea::placeholder {
  color: #9AA6BD;
}
textarea:focus {
  outline: none;
  border-color: #6AEACA;
}

button[type=submit] {
  border: none;
}
@media (max-width: 499px) {
  button[type=submit] {
    flex-grow: 1;
    justify-content: space-between;
    width: 100%;
  }
}

.faq {
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .faq {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .faq {
    margin-bottom: 40px;
  }
}

.faq-item {
  border-bottom: 1px solid #E5E9F1;
  margin-bottom: 0;
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: var(--size-bigger);
  font-weight: 600;
  color: #383838;
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .faq-question {
    padding: 20px 0;
    font-size: var(--size-body);
  }
}
.faq-question:hover {
  color: #205AEE;
}
.faq-question::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("/images/chevron-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
@media (max-width: 767px) {
  .faq-question::after {
    width: 20px;
    height: 20px;
    margin-left: 12px;
  }
}
.faq-question[aria-expanded=true] {
  color: #205AEE;
}
.faq-question[aria-expanded=true]::after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 0 24px;
  font-size: var(--size-body);
  line-height: 1.6;
  color: #4E4E4E;
  font-family: "Aleo", serif;
}
@media (max-width: 767px) {
  .faq-answer {
    padding: 0 0 20px;
    font-size: var(--size-smaller);
  }
}
.faq-answer p {
  margin: 0 0 16px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
.faq-answer ul, .faq-answer ol {
  margin: 16px 0;
  padding-left: 24px;
}
.faq-answer ul li, .faq-answer ol li {
  margin-bottom: 8px;
}
.faq-answer a {
  color: #205AEE;
  text-decoration: none;
  font-weight: 600;
}
.faq-answer a:hover {
  text-decoration: underline;
}

.faq-section {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .faq-section {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .faq-section {
    padding: 40px 0;
  }
}
.faq-section .container {
  max-width: 800px;
}
.faq-section h2 {
  text-align: center;
  margin-bottom: 16px;
  color: #383838;
}
.faq-section .subtitle {
  text-align: center;
  margin-bottom: 48px;
  color: #4E4E4E;
}
@media (max-width: 767px) {
  .faq-section .subtitle {
    margin-bottom: 32px;
  }
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  justify-content: center;
}
@media (max-width: 767px) {
  .faq-categories {
    gap: 12px;
    margin-bottom: 32px;
  }
}

.faq-category {
  padding: 8px 16px;
  background: #fff;
  border: 1px solid #E5E9F1;
  border-radius: 20px;
  font-size: var(--size-smaller);
  font-weight: 500;
  color: #4E4E4E;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-category:hover {
  border-color: #205AEE;
  color: #205AEE;
}
.faq-category.active {
  background: #205AEE;
  border-color: #205AEE;
  color: #fff;
}

.faq-search {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .faq-search {
    margin-bottom: 32px;
  }
}
.faq-search .search-input {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .benefits {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .benefits {
    gap: 20px;
    margin-bottom: 40px;
  }
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .benefit-card {
    padding: 24px 20px;
  }
}
.benefit-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6AEACA 0%, #4ABFA2 100%);
  border-radius: 12px;
}
@media (max-width: 767px) {
  .benefit-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }
}
.benefit-card__icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) saturate(100%) invert(1);
}
@media (max-width: 767px) {
  .benefit-card__icon img {
    width: 24px;
    height: 24px;
  }
}
.benefit-card__title {
  margin: 0 0 12px;
  font-size: var(--size-h4);
  font-weight: 700;
  color: #383838;
  font-family: "Plus Jakarta Sans", sans-serif;
}
@media (max-width: 767px) {
  .benefit-card__title {
    font-size: var(--size-bigger);
    margin-bottom: 8px;
  }
}
.benefit-card__description {
  margin: 0;
  font-size: var(--size-body);
  line-height: 1.6;
  color: #4E4E4E;
  font-family: "Aleo", serif;
}
@media (max-width: 767px) {
  .benefit-card__description {
    font-size: var(--size-smaller);
  }
}
.benefit-card__link {
  margin-top: 20px;
  font-size: var(--size-smaller);
  font-weight: 600;
  color: #205AEE;
  text-decoration: none;
  transition: color 0.3s ease;
}
.benefit-card__link:hover {
  color: #A4262C;
}
@media (max-width: 767px) {
  .benefit-card__link {
    margin-top: 16px;
  }
}

.benefit-card--primary .benefit-card__icon {
  background: linear-gradient(135deg, #205AEE 0%, #0F38A0 100%);
}
.benefit-card--secondary .benefit-card__icon {
  background: linear-gradient(135deg, #A4262C 0%, #A82231 100%);
}
.benefit-card--accent .benefit-card__icon {
  background: linear-gradient(135deg, #6AEACA 0%, #4ABFA2 100%);
}

.benefits-section {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .benefits-section {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .benefits-section {
    padding: 40px 0;
  }
}
.benefits-section .container {
  text-align: center;
}
.benefits-section h2 {
  margin-bottom: 16px;
  color: #383838;
}
.benefits-section .subtitle {
  margin-bottom: 48px;
  color: #4E4E4E;
}
@media (max-width: 767px) {
  .benefits-section .subtitle {
    margin-bottom: 32px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 44px;
  min-height: 68px;
  padding: 8px 24px;
  font-size: var(--size-body);
  font-weight: 900;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all ease 300ms;
}
@media (max-width: 1600px) {
  .btn {
    min-height: 62px;
  }
}
@media (max-width: 1439px) {
  .btn {
    column-gap: 20px;
    min-height: 56px;
  }
}
@media (max-width: 991px) {
  .btn {
    min-height: 48px;
  }
}
.btn.arrow::after {
  transition: background-color ease 300ms;
}
.btn-primary {
  color: #000;
  background: #6AEACA;
}
.btn-primary:hover {
  background: #41CFAB;
  color: #fff;
}
.btn-primary.arrow::after {
  background-color: #000;
}
.btn-primary.arrow:hover::after {
  background-color: #fff;
}
.btn-secondary {
  color: #4ABFA2;
  border: 1px solid #4ABFA2;
}
.btn-secondary:hover {
  color: #2A967B;
  border-color: #2A967B;
}
.btn-secondary.dark-bg {
  color: #6AEACA;
  border-color: #6AEACA;
}
.btn-secondary.dark-bg:hover {
  border-color: #36BE9C;
  color: #36BE9C;
}
.btn-secondary.arrow::after {
  background-color: #4ABFA2;
}
.btn-secondary.arrow:hover::after {
  background-color: #2A967B;
}
.btn-secondary.arrow.dark-bg::after {
  background-color: #6AEACA;
}
.btn-secondary.arrow.dark-bg:hover::after {
  background-color: #36BE9C;
}
.btn-tertiary {
  border: 1px solid #fff;
  color: #fff;
}
.btn-tertiary:hover {
  background-color: #fff;
  color: #1B2E56;
}
.btn-tertiary.arrow::after {
  background-color: #fff;
}
.btn-tertiary.arrow:hover::after {
  background-color: #1B2E56;
}
.btn.arrow::after {
  display: inline-block;
  content: "";
  width: 36px;
  height: 36px;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  mask-image: url("/images/circle-arrow.svg");
  -webkit-mask-image: url("/images/circle-arrow.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
@media (max-width: 1439px) {
  .btn.arrow::after {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 991px) {
  .btn.arrow::after {
    width: 24px;
    height: 24px;
  }
}
.btn.arrow.arrow-right::after {
  transform: rotate(270deg);
}

/* ===== Testimonials Component ===== */
.testimonials {
  padding: 80px 0;
  background: #fff;
  /* ====== Desktop: 3 sloupce ====== */
  /* ===== Responzivita: 2 sloupce ===== */
  /* ===== Mobile: 1 sloupec ===== */
}
@media (max-width: 991px) {
  .testimonials {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .testimonials {
    padding: 40px 0;
  }
}
.testimonials .testimonials-title {
  text-align: center;
  margin: 0 0 12px;
}
.testimonials .testimonials-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
  color: #4E4E4E;
  line-height: 1.6;
  font-size: var(--size-bigger);
}
.testimonials .subtitle {
  max-width: 720px;
  margin: 0 auto 40px;
  color: #4E4E4E;
  line-height: 1.6;
  font-size: var(--size-bigger);
}
.testimonials .tgrid {
  --grid-color: #6AEACA; /* barva čar */
  --knot-size: 15px; /* velikost uzlíku (desktop) */
  --panel-bg: #fff; /* barva pozadí pod uzlíkem */
}
.testimonials .tcard {
  position: relative;
  padding: 24px;
  background: #fff;
  color: #212121;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .testimonials .tcard {
    padding: 20px;
  }
}
.testimonials .tcard .ttext {
  margin-bottom: 16px;
}
.testimonials .tcard .ttext .toggle-more {
  color: #6AEACA;
  text-decoration: none;
  font-weight: 600;
}
.testimonials .tcard .ttext .toggle-more:hover {
  text-decoration: underline;
}
.testimonials .tcard .reference-text {
  position: relative;
  text-align: justify;
  margin-bottom: 16px;
}
.testimonials .tcard .reference-text .toggle-more {
  color: #6AEACA;
  text-decoration: none;
  font-weight: 600;
}
.testimonials .tcard .reference-text .toggle-more:hover {
  text-decoration: underline;
}
.testimonials .tcard .tauthor {
  font-size: var(--size-smaller);
  line-height: 1.4;
}
.testimonials .tcard .tauthor strong {
  color: #000000;
  font-weight: 900;
  display: block;
  margin-bottom: 4px;
}
.testimonials .tcard .tauthor span {
  color: #5C5C5C;
  font-weight: 500;
  display: block;
}
.testimonials .tcard .reference-name {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  text-transform: uppercase;
  color: #000;
  font-size: var(--size-bigger);
}
@media (max-width: 1600px) {
  .testimonials .tcard .reference-name {
    margin-top: 20px;
    font-size: var(--size-body);
  }
}
.testimonials .tcard .reference-name .name {
  font-size: var(--size-h4);
  font-weight: 900;
  font-family: "Plus Jakarta Sans", sans-serif;
}
@media (max-width: 1600px) {
  .testimonials .tcard .reference-name .name {
    font-size: var(--size-bigger);
  }
}
.testimonials .tcard .reference-name .position {
  font-size: var(--size-bigger);
  font-weight: 500;
  color: #5C5C5C;
}
@media (max-width: 1600px) {
  .testimonials .tcard .reference-name .position {
    font-size: var(--size-body);
  }
}
@media (min-width: 1200px) {
  .testimonials {
    /* první řádek – bez horní čáry */
    /* první sloupec – bez levé čáry */
    /* uzlík v levém‑horním rohu vnitřních buněk */
    /* uzlík se nenačítá na krajích (1. řádek a 1. sloupec) */
  }
  .testimonials .tgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonials .tcard {
    border-top: 1px solid var(--grid-color);
    border-left: 1px solid var(--grid-color);
  }
  .testimonials .tgrid .tcard:nth-child(-n+3) {
    border-top: none;
  }
  .testimonials .tgrid .tcard:nth-child(3n+1) {
    border-left: none;
  }
  .testimonials .tgrid .tcard::after {
    content: "";
    position: absolute;
    width: var(--knot-size);
    height: var(--knot-size);
    left: calc(-1 * var(--knot-size) / 2);
    top: calc(-1 * var(--knot-size) / 2);
    background: var(--panel-bg);
    border-radius: 50%;
    z-index: 3;
    pointer-events: none;
  }
  .testimonials .tgrid .tcard:nth-child(-n+3)::after,
  .testimonials .tgrid .tcard:nth-child(3n+1)::after {
    content: none;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .testimonials {
    /* levý sloupec = liché karty: svislá středová čára */
    /* nejdřív zruším všechny uzlíky z desktopu */
    /* uzlík jen u lichých 1,3,5,… v pravém‑dolním rohu */
  }
  .testimonials .tgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0;
    row-gap: 0;
  }
  .testimonials .tcard {
    border: 0;
    border-bottom: 1px solid #6AEACA; /* vodorovné čáry */
  }
  .testimonials .tgrid .tcard:nth-child(2n+1) {
    border-right: 1px solid #6AEACA;
  }
  .testimonials .tgrid .tcard::after {
    content: none;
  }
  .testimonials .tgrid .tcard:nth-child(2n+1)::after {
    content: "";
    position: absolute;
    right: -8px; /* přesně na průsečík */
    bottom: -8px;
    width: 14px; /* můžeš dát 5px */
    height: 14px;
    background: #fff;
    border-radius: 50%; /* 0 = čtverec */
    z-index: 4; /* ať překryje čáry */
    pointer-events: none;
  }
  .testimonials .tgrid .tcard:last-child {
    border-bottom: none;
  }
}
@media (max-width: 767px) {
  .testimonials {
    /* jen spodní hrana */
    /* úplně odstraníme uzlíky */
  }
  .testimonials .tgrid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 0;
  }
  .testimonials .tgrid .tcard {
    border: 0;
    border-bottom: 1px solid var(--grid-color);
    position: relative;
  }
  .testimonials .tgrid .tcard::before,
  .testimonials .tgrid .tcard::after {
    content: none;
  }
  .testimonials .tgrid .tcard:last-child {
    border-bottom: none;
  }
}

header {
  display: flex;
  align-items: center;
  column-gap: 80px;
  position: relative;
  height: 80px;
  z-index: 10;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: var(--size-smaller);
}
@media (max-width: 1199px) {
  header {
    column-gap: 40px;
  }
}
@media (max-width: 767px) {
  header {
    height: 60px;
  }
}
@media (max-width: 767px) {
  header .logo-holder {
    max-width: 132px;
  }
}
header a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}
header a:hover {
  text-decoration: underline;
}
header a.tel {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
header a.tel:hover {
  text-decoration: none;
}
header a.tel:hover::before {
  background-color: #fff;
}
header a.tel::before {
  display: inline-block;
  flex-shrink: 0;
  content: "";
  width: 16px;
  height: 16px;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  mask-image: url("/images/phone.svg");
  -webkit-mask-image: url("/images/phone.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #6AEACA;
  transition: background-color ease 300ms;
}
@media (max-width: 1199px) {
  header a.tel::before {
    width: 24px;
    height: 24px;
  }
}
header a.tel span {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
@media (max-width: 1199px) {
  header a.tel span {
    display: none;
  }
}
header a.tel span::before {
  display: inline-block;
  content: "";
  position: relative;
  height: 28px;
  width: 1px;
  bottom: -2px;
  background-color: #1B2E56;
}

.navi-wrapper {
  flex-grow: 1;
}
.navi-wrapper .main-navi li {
  position: relative;
}


.navi-wrapper .main-navi li.ext > a::after {
  display: inline-block;
  content: "";
  position: relative;
  width: 12px;
  height: 8px;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  mask-image: url("/images/chevron-down.svg");
  -webkit-mask-image: url("/images/chevron-down.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #fff;
  transition: transform ease 300ms;
}
.navi-wrapper .main-navi li.ext.exp > a::after {
  transform: rotate(180deg);
}
.navi-wrapper .main-navi li.ext.exp .main-navi__second {
  display: flex;
}
.navi-wrapper .main-navi li a {
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  padding-block: 10px;
}
.navi-wrapper .main-navi__second {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 200px;
  padding: 16px 20px;
  background-color: #000B22;
  border: 1px solid #6AEACA;
  border-radius: 6px;
}
.navi-wrapper .main-navi__second li a {
  padding-block: 0;
  font-size: 13px;
}
/* 3. úroveň menu – sub-menu uvnitř druhého levelu */
.navi-wrapper .main-navi__second li {
  position: relative;
}
.navi-wrapper .main-navi__second .sub-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 2px;
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 200px;
  margin: 0;
  padding: 12px 16px;
  list-style: none;
  background-color: #000B22;
  border: 1px solid #6AEACA;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.navi-wrapper .main-navi__second li.ext.exp .sub-menu {
  display: flex;
}
.navi-wrapper .main-navi__second .sub-menu li a {
  font-size: 12px;
  padding: 4px 0;
  white-space: nowrap;
}
.navi-wrapper ul {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 48px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1439px) {
  .navi-wrapper ul {
    column-gap: 32px;
  }
}
.navi-wrapper .contact-part {
  display: none;
}
.navi-wrapper .btn-holder {
  display: none;
}

.menu-ico {
  display: none;
}

@media (max-width: 991px) {
  header {
    justify-content: space-between;
  }
  .navi-wrapper {
    position: fixed;
    height: calc(100% - 80px);
    top: 80px;
    right: 0;
    left: 0;
    padding: 40px 24px;
    z-index: 10;
    background-color: #000B22;
    transform: translateX(100%);
    transition: transform ease 300ms;
    font-size: var(--size-h4);
    overflow: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .navi-wrapper {
    top: 60px;
    height: calc(100% - 60px);
  }
}
@media (max-width: 991px) {
  .navi-wrapper .main-navi {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 24px;
  }
  .navi-wrapper .main-navi li.ext {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .navi-wrapper .main-navi li a {
    padding-block: 0;
  }
  .navi-wrapper .main-navi__second {
    align-items: center;
    position: relative;
    left: auto;
    transform: none;
    max-width: 100%;
    padding: 0;
    margin-block: 10px;
    border: none;
    background-color: transparent;
    border-radius: none;
  }
  .navi-wrapper .main-navi__second li a {
    font-size: 16px;
  }
  .navi-wrapper .main-navi__second .sub-menu {
    position: relative;
    left: auto;
    top: auto;
    margin-block: 8px 0;
    margin-inline-start: 16px;
    padding: 8px 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  .navi-wrapper .main-navi__second li.ext.exp .sub-menu {
    display: flex;
  }
  .navi-wrapper .main-navi__second .sub-menu li a {
    font-size: 15px;
  }
  .navi-wrapper .contact-part {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 24px;
    margin-top: 32px;
    padding-block: 24px;
    border-top: 1px solid #1C315E;
    border-bottom: 1px solid #1C315E;
  }
  .navi-wrapper .contact-part a {
    display: flex;
    align-items: center;
    column-gap: 20px;
  }
  .navi-wrapper .contact-part a span {
    display: inline-block;
  }
  .navi-wrapper .contact-part a span::before {
    content: none;
  }
  .navi-wrapper .contact-part a::before {
    display: inline-block;
    flex-shrink: 0;
    content: "";
    width: 36px;
    height: 36px;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    mask-image: url("/images/phone.svg");
    -webkit-mask-image: url("/images/phone.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    background-color: #6AEACA;
  }
  .navi-wrapper .contact-part a.mail {
    text-transform: none;
  }
  .navi-wrapper .contact-part a.mail::before {
    mask-image: url("/images/mail.svg");
    -webkit-mask-image: url("/images/mail.svg");
  }
  .navi-wrapper .btn-holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }
}
@media (max-width: 991px) and (max-width: 499px) {
  .navi-wrapper .btn-holder .btn {
    justify-content: center;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .contact-section {
    display: none;
  }
  body.navigation-window-visible {
    overflow: hidden;
  }
  body.navigation-window-visible .navi-wrapper {
    transform: none;
  }
  body.navigation-window-visible .close {
    display: block;
  }
  body.navigation-window-visible .menu {
    display: none;
  }
  body .close {
    display: none;
  }
  .menu-ico {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 991px) and (max-width: 499px) {
  .menu-ico img.menu {
    max-width: 28px;
  }
}
@media (max-width: 991px) and (max-width: 499px) {
  .menu-ico img.close {
    max-width: 20px;
  }
}
footer {
  position: relative;
  z-index: 2;
  max-width: 1920px;
  padding-inline: 40px;
  margin-inline: auto;
  background-color: #000B22;
}
footer::before {
  display: inline-block;
  content: "";
  position: absolute;
  width: 100%;
  height: 66px;
  bottom: calc(100% - 1px);
  left: 0;
  background-image: url("/images/mini-waves1.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
footer::after {
  display: inline-block;
  content: "";
  position: absolute;
  width: 191px;
  height: 286px;
  bottom: calc(100% + 0px);
  right: 0;
  background-image: url("/images/majacek-02.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  footer::after {
    content: none;
  }
}

.footer-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1120px;
  margin-inline: auto;
  padding-block: 72px 48px;
}
@media (max-width: 991px) {
  .footer-inner {
    gap: 40px 80px;
    justify-content: center;
    padding-block: 60px 40px;
  }
}
.footer-inner::before {
  display: inline-block;
  content: "";
  position: absolute;
  width: 232px;
  height: 146px;
  bottom: calc(100% + 46px);
  left: var(--ship-left, 60px);
  transform: var(--ship-direction, scaleX(1));
  transition: left 0.2s linear, transform 0.2s linear;
  background-image: url("/images/ship-logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}
.footer-inner > .footer-section {
  position: relative;
  z-index: 0;
}
@media (max-width: 991px) {
  .footer-inner::before {
    width: 180px;
    bottom: calc(100% + 10px);
  }
}
.footer-inner .footer-about {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  max-width: 305px;
  color: #B9C5DD;
  line-height: 1.47;
}
@media (max-width: 991px) {
  .footer-inner .footer-about {
    width: 100%;
    max-width: 100%;
  }
}
.footer-inner .footer-about p {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .footer-inner .footer-about > * {
    max-width: 305px;
    margin-inline: auto;
    text-align: center;
  }
}
.footer-inner .footer-contact {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
@media (max-width: 991px) {
  .footer-inner .footer-contact {
    row-gap: 20px;
    font-size: var(--size-h4);
  }
}
.footer-inner .footer-contact a {
  display: inline-flex;
  align-items: center;
  column-gap: 20px;
  color: #fff;
  text-decoration: none;
}
.footer-inner .footer-contact a:hover::before {
  background-color: #fff;
}
.footer-inner .footer-contact a::before {
  display: inline-block;
  content: "";
  width: 36px;
  height: 36px;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #6AEACA;
  transition: background-color ease 300ms;
}
.footer-inner .footer-contact a.phone::before {
  mask-image: url("/images/phone.svg");
  -webkit-mask-image: url("/images/phone.svg");
}
.footer-inner .footer-contact a.mail::before {
  mask-image: url("/images/mail.svg");
  -webkit-mask-image: url("/images/mail.svg");
}
.footer-inner .footer-socials {
  display: flex;
  column-gap: 24px;
}
.footer-inner .footer-socials a:hover::before {
  background-color: #fff;
}
.footer-inner .footer-socials a::before {
  display: inline-block;
  content: "";
  width: 40px;
  height: 40px;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #6AEACA;
  transition: background-color ease 300ms;
}
.footer-inner .footer-socials a.instagram::before {
  mask-image: url("/images/instagram.svg");
  -webkit-mask-image: url("/images/instagram.svg");
}
.footer-inner .footer-socials a.facebook::before {
  mask-image: url("/images/facebook.svg");
  -webkit-mask-image: url("/images/facebook.svg");
}

.copyright {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 8px;
  margin: 0;
  padding: 0 0 12px;
  color: #B9C5DD;
  list-style: none;
  font-size: var(--size-smaller);
}
.copyright a {
  color: #B9C5DD;
  font-weight: 700;
}
.copyright a:hover {
  color: #fff;
}
@media (max-width: 499px) {
  .copyright {
    text-align: center;
  }
  .copyright li:first-child {
    width: 100%;
  }
}

/* ========================================
   FAT FOOTER – 3 sloupce menu (SEO)
   ======================================== */
.fat-footer {
  border-top: 1px solid rgba(185, 197, 221, 0.2);
  padding-block: 48px 32px;
  color: #B9C5DD;
}
.fat-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 48px 64px;
  flex-wrap: wrap;
  max-width: 1120px;
  margin-inline: auto;
}
.fat-footer__col {
  flex: 1;
  min-width: 140px;
}
.fat-footer__heading {
  margin: 0 0 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: var(--size-h4);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.fat-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fat-footer__menu li {
  margin-bottom: 8px;
}
.fat-footer__menu li:last-child {
  margin-bottom: 0;
}
.fat-footer__menu a {
  color: #B9C5DD;
  text-decoration: none;
  font-size: var(--size-body);
  transition: color 0.2s ease;
}
.fat-footer__menu a:hover {
  color: #fff;
}
@media (max-width: 991px) {
  .fat-footer {
    padding-block: 32px 24px;
  }
  .fat-footer__inner {
    flex-direction: column;
    gap: 0;
  }
  .fat-footer__col {
    min-width: 100%;
    border-bottom: 1px solid rgba(185, 197, 221, 0.15);
  }
  .fat-footer__col:last-child {
    border-bottom: none;
  }
  .fat-footer__heading {
    margin: 0;
    padding: 16px 0;
    cursor: pointer;
    position: relative;
    padding-inline-end: 32px;
  }
  .fat-footer__heading::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 8px;
    mask-image: url("/images/chevron-down.svg");
    -webkit-mask-image: url("/images/chevron-down.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    background-color: #B9C5DD;
    transition: transform 0.25s ease;
  }
  .fat-footer__col.is-open .fat-footer__heading::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .fat-footer__menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .fat-footer__col.is-open .fat-footer__menu {
    max-height: 500px;
  }
  .fat-footer__menu li {
    margin-bottom: 0;
  }
  .fat-footer__menu a {
    display: block;
    padding: 10px 0;
  }
}

/* ========================================
   SITEMAP PAGE (Mapa webu) – na světlém pozadí .gradient
   ======================================== */
/* Odsazení zprava kvůli lodičce v patičce; velká mezera od spodu, aby vlny a lodička nepřekrývaly text */
.sitemap-page__wrap {
  padding: 48px 0 200px 320px;
}
@media (max-width: 1199px) {
  .sitemap-page__wrap {
    padding: 48px 0 180px 260px;
  }
}
@media (max-width: 991px) {
  .sitemap-page__wrap {
    padding: 48px 0 160px 200px;
  }
}
@media (max-width: 767px) {
  .sitemap-page__wrap {
    padding: 48px 24px 140px;
  }
}
.sitemap-section {
  margin-bottom: 40px;
}
.sitemap-section__title {
  font-size: var(--size-h3);
  margin: 0 0 20px;
  color: #0F234D;
  font-weight: 700;
}
.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sitemap-list li {
  margin-bottom: 10px;
}
.sitemap-list a {
  color: #2C3B60;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.sitemap-list a:hover {
  color: #205AEE;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sitemap-list a:focus-visible {
  outline: 2px solid #205AEE;
  outline-offset: 2px;
}
/* Odsazení vnořených seznamů (wp_list_pages() i služby) – vnořené <ul> nemají depth třídy */
.sitemap-list ul,
.sitemap-list--depth-1,
.sitemap-list--depth-2 {
  margin-top: 8px;
  margin-left: 24px;
}
.sitemap-list ul ul {
  margin-left: 24px;
}
.sitemap-list--depth-2 .sitemap-list a,
.sitemap-list ul ul a {
  font-size: var(--size-smaller);
  color: #454E60;
}
.sitemap-list ul ul a:hover {
  color: #205AEE;
}

.coop {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: 40px;
  margin-bottom: 140px;
}
@media (max-width: 991px) {
  .coop {
    flex-direction: column;
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .coop {
    margin-bottom: 72px;
  }
}
@media (max-width: 499px) {
  .coop {
    margin-bottom: 48px;
  }
}
.coop:has(+ .clients) {
  margin-bottom: 60px;
}
.coop-description {
  max-width: 500px;
}
@media (max-width: 1199px) {
  .coop-description {
    max-width: 360px;
  }
}
@media (max-width: 991px) {
  .coop-description {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .coop-description p br {
    display: none;
  }
}
.coop-description h2 {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin: 0 0 16px;
}
@media (max-width: 1199px) {
  .coop-description h2 {
    row-gap: 12px;
  }
}
@media (max-width: 767px) {
  .coop-description h2 {
    margin-bottom: 8px;
  }
}
.coop-description h2::before {
  display: inline-block;
  content: "";
  width: 64px;
  height: 64px;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  mask-image: url("/images/boat.svg");
  -webkit-mask-image: url("/images/boat.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #1B2E56;
}
@media (max-width: 1199px) {
  .coop-description h2::before {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 767px) {
  .coop-description h2::before {
    width: 36px;
    height: 36px;
  }
}
.coop .logos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  position: relative;
  width: 632px;
  max-width: 100%;
}
.coop .logos-grid:before {
  display: inline-block;
  content: "";
  position: absolute;
  width: 480px;
  height: 124px;
  right: calc(100% + 20px);
  top: 12px;
  background-image: url("/images/map.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1439px) {
  .coop .logos-grid:before {
    width: 360px;
  }
}
@media (max-width: 1199px) {
  .coop .logos-grid:before {
    width: 280px;
    top: -20px;
  }
}
@media (max-width: 991px) {
  .coop .logos-grid:before {
    content: none;
  }
}
.coop .logos-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}
.coop .logos-grid a:not(:nth-child(3n)) {
  border-right: 1px solid #E5E9F1;
}
.coop .logos-grid a:nth-child(n+4) {
  border-top: 1px solid #E5E9F1;
}
.coop .logos-grid a img {
  filter: grayscale(100%);
  transition: filter ease 300ms;
}
@media (max-width: 767px) {
  .coop .logos-grid a img {
    filter: none;
  }
}
.coop .logos-grid a:hover img {
  filter: none;
}

.knowledges {
  position: relative;
  text-align: center;
}
.knowledges::before {
  display: inline-block;
  content: "";
  position: absolute;
  width: calc(100vw - var(--scrollbar-width));
  max-width: 1920px;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url("/images/rope.svg");
  background-size: 648px 100%;
  background-position: right center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .knowledges::before {
    content: none;
  }
}
.knowledges > * {
  position: relative;
  z-index: 1;
}
.knowledges.addons .knowledge {
  align-items: flex-start;
  width: calc(33.333% - 13.333px);
  text-align: left;
  background-color: #fff;
}
@media (max-width: 1439px) {
  .knowledges.addons .knowledge {
    width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {
  .knowledges.addons .knowledge {
    width: 220px;
    padding: 52px 16px 20px;
  }
}
.knowledges.addons .knowledge h3 {
  color: #2C3B60;
}
.knowledges.addons .knowledge .btn {
  justify-content: space-between;
  width: 100%;
}
.knowledges.addons .knowledge-description {
  color: #444E60;
}
.knowledges .swiper-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .knowledges .swiper-wrapper {
    flex-wrap: nowrap;
    gap: 0;
  }
}
.knowledges-holder {
  margin-top: 40px;
  padding-block: 20px;
  padding-inline: 20px;
  margin-inline: -20px;
}

@media (max-width: 767px) {
  .knowledges-holder {
    margin: 0 -24px;
    padding-inline: 12px;
  }
}
.page-template-rekli-o-nas-php .knowledges-holder {
  margin-top: 0px;
}
.knowledges .knowledge {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(25% - 15px);
  padding: 48px 24px 32px;
  height: initial;
  background-color: #000B22;
  border-radius: 8px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
@media (max-width: 1439px) {
  .knowledges .knowledge {
    width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {
  .knowledges .knowledge {
    width: 220px;
    padding: 52px 16px 20px;
  }
}
.knowledges .knowledge h3 {
  margin: 24px 0 16px;
  color: #fff;
}
@media (max-width: 767px) {
  .knowledges .knowledge h3 {
    margin-block-end: 16px;
  }
}
.knowledges .knowledge .btn-holder {
  margin-top: auto;
  width: 100%;
}
.knowledges .knowledge .btn-holder .btn {
  column-gap: 16px;
  font-size: var(--size-smaller);
}
@media (max-width: 767px) {
  .knowledges .knowledge .btn-holder .btn {
    padding: 8px 12px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .knowledges .knowledge .btn-holder .btn::after {
    content: none;
  }
}
.knowledges .knowledge-description {
  margin-bottom: 40px;
  color: #94A4C4;
}
@media (max-width: 767px) {
  .knowledges .knowledge-description {
    margin-bottom: 16px;
  }
}
.knowledges .knowledge-ico {
  width: 100px;
  height: 100px;
}
@media (max-width: 767px) {
  .knowledges .knowledge-ico {
    width: 66px;
    height: 66px;
  }
}
.knowledges .knowledge-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.knowledges .knowledge .instalation {
  position: absolute;
  right: 0;
  top: 0;
  padding: 4px 16px;
  border-radius: 0 8px;
  background: linear-gradient(270deg, #0F38A0 0%, #205AEE 98.43%), linear-gradient(0deg, #205AEE, #205AEE);
  font-size: 14px;
  color: #fff;
  font-weight: 900;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: uppercase;
}
.knowledges .knowledges-pagination {
  display: none;
  align-items: center;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .knowledges .knowledges-pagination {
    display: flex;
  }
}
.knowledges .knowledges-pagination .swiper-pagination {
  display: flex;
  column-gap: 12px;
  position: relative;
  width: auto !important;
  bottom: auto;
  top: auto;
  left: auto;
  margin-right: 12px;
}
.knowledges .knowledges-pagination .swiper-pagination-bullet {
  width: 32px;
  height: 32px;
  margin: 0 !important;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  mask-image: url("/images/rudder.svg");
  -webkit-mask-image: url("/images/rudder.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #AFB9CD;
  opacity: 1;
}
.knowledges .knowledges-pagination .swiper-pagination-bullet-active {
  background-color: #205AEE;
}
.knowledges .knowledges-pagination .pagination-indicator {
  display: flex;
  align-items: center;
  column-gap: 16px;
  flex-grow: 1;
  margin-left: 4px;
  font-weight: 900;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #205AEE;
  font-size: 14px;
}
.knowledges .knowledges-pagination .pagination-indicator::before {
  content: "";
  flex-grow: 1;
  height: 12px;
  background-image: url("/images/dotted-arrow.svg?v=1");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

.clients {
  z-index: 2 !important;
  margin-bottom: 140px;
  text-align: center;
}
@media (max-width: 991px) {
  .clients {
    flex-direction: column;
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .clients {
    margin-bottom: 72px;
  }
}
@media (max-width: 499px) {
  .clients {
    margin-bottom: 48px;
  }
}
.clients > h2 {
  margin: 0 0 20px;
  text-align: center;
}
.clients-holder {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
@media (max-width: 1439px) {
  .clients-holder {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 499px) {
  .clients-holder {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 24px -24px 0;
  }
}
.clients-holder .client {
  display: flex;
  flex-direction: column;
  padding: 36px;
  border-radius: 16px;
  color: #fff;
}
@media (max-width: 767px) {
  .clients-holder .client {
    padding: 48px 24px;
  }
}
@media (max-width: 499px) {
  .clients-holder .client {
    border-radius: 0;
  }
}
.clients-holder .client-image {
  text-align: center;
}
.clients-holder .client.big {
  grid-row: span 2;
  padding-bottom: 48px;
}
.clients-holder .client.big .logo-holder {
  margin: 0 auto -33px;
  z-index: 1;
}
.clients-holder .client.brain {
  background-color: #6262F9;
}
.clients-holder .client.kasumex {
  background-color: #A4262C;
}
.clients-holder .client.kancelar {
  background-color: #1468B3;
}
.clients-holder .client.livero {
  background-color: #39C886;
}
.clients-holder .client.kancl {
  background-color: #D83B96;
}
.clients-holder .client h3 {
  margin-block: 24px 20px;
  color: #fff;
}
@media (max-width: 767px) {
  .clients-holder .client h3 {
    margin-block: 20px 16px;
  }
}
.clients-holder .client .btn {
  justify-content: space-between;
  width: 100%;
  margin-top: 28px;
}
@media (max-width: 499px) {
  .clients-holder .client .btn {
    margin-top: 8px;
  }
}
.clients-holder .client .logo-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 220px;
  width: 100%;
  height: 66px;
  padding: 8px 16px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 12px;
}

.home .references {
  max-width: 1920px;
  padding-inline: 24px;
  margin-bottom: 140px;
  margin-inline: auto;
}
@media (max-width: 991px) {
  .home .references {
    flex-direction: column;
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .home .references {
    margin-bottom: 72px;
  }
}
@media (max-width: 499px) {
  .home .references {
    margin-bottom: 48px;
  }
}
.home .references::before {
  display: inline-block;
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(100% - 100px);
  width: 450px;
  height: 600px;
  background-image: url("/images/rope-half.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left bottom;
}
@media (max-width: 1439px) {
  .home .references::before {
    width: 300px;
    height: 400px;
  }
}
@media (max-width: 1199px) {
  .home .references::before {
    width: 200px;
    height: 300px;
  }
}
@media (max-width: 991px) {
  .home .references::before {
    content: none;
  }
}
.home .references h2 {
  text-align: center;
}
.home .references .subtitle {
  max-width: 640px;
  text-align: center;
}
.home .references-swiper {
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .home .references-swiper {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .home .references-swiper {
    margin-top: 28px;
  }
}
.home .references-wrap {
  position: relative;
  padding-inline: 208px;
  margin-inline: auto;
  width: calc(100% - 108px);
}
@media (max-width: 1600px) {
  .home .references-wrap {
    width: var(--container-width);
    padding-inline: 100px;
  }
}
@media (max-width: 991px) {
  .home .references-wrap {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .home .references-wrap {
    margin-inline: -20px;
    width: calc(100% + 40px);
    padding-inline: 48px;
  }
}
.home .references .reference {
  line-height: 1.6;
}
.home .references .reference:last-child .reference-text::after {
  content: none;
}
.home .references .reference-text {
  position: relative;
  text-align: justify;
}
.home .references .reference-text .toggle-more {
  color: #6AEACA;
  text-decoration: none;
  font-weight: 600;
}
.home .references .reference-text .toggle-more:hover {
  text-decoration: underline;
}
.home .references .reference-text::after {
  display: inline-block;
  content: "";
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
  height: 72%;
  width: 1px;
  background-color: #000;
}
@media (max-width: 991px) {
  .home .references .reference-text::after {
    content: none;
  }
}
.home .references .reference-name {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  text-transform: uppercase;
  color: #000;
  font-size: var(--size-bigger);
}
@media (max-width: 1600px) {
  .home .references .reference-name {
    margin-top: 20px;
    font-size: var(--size-body);
  }
}
.home .references .reference-name .name {
  font-size: var(--size-h4);
  font-weight: 900;
  font-family: "Plus Jakarta Sans", sans-serif;
}
@media (max-width: 1600px) {
  .home .references .reference-name .name {
    font-size: var(--size-bigger);
  }
}

.crew {
  display: flex;
  align-items: center;
  column-gap: 44px;
  position: relative;
  margin-bottom: 140px;
}
@media (max-width: 1199px) {
  .crew {
    flex-direction: column-reverse;
    align-items: flex-start;
    row-gap: 40px;
  }
}
@media (max-width: 991px) {
  .crew {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .crew {
    margin-bottom: 72px;
  }
}
@media (max-width: 499px) {
  .crew {
    margin-bottom: 48px;
  }
}
.crew::after {
  display: inline-block;
  content: "";
  position: absolute;
  width: calc(100vw - var(--scrollbar-width));
  max-width: 1920px;
  height: calc(100% + 80px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url("/images/ship1.svg");
  background-size: 296px;
  background-position: calc(100% - 24px) bottom;
  background-repeat: no-repeat;
  z-index: 2;
}
@media (max-width: 1199px) {
  .crew::after {
    content: none;
  }
}
.crew > * {
  position: relative;
  z-index: 2;
}
.crew-text {
  flex-shrink: 0;
  position: relative;
  max-width: 640px;
  z-index: 3;
}
@media (max-width: 1439px) {
  .crew-text {
    max-width: 480px;
  }
}
@media (max-width: 1199px) {
  .crew-text {
    max-width: 100%;
  }
}
.crew-text h2 {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin: 0 0 20px;
}
.crew-text h2::before {
  display: inline-block;
  content: "";
  width: 64px;
  height: 64px;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  mask-image: url("/images/crew.svg");
  -webkit-mask-image: url("/images/crew.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #1B2E56;
}
@media (max-width: 1199px) {
  .crew-text h2::before {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 767px) {
  .crew-text h2::before {
    width: 36px;
    height: 36px;
  }
}
.crew-text p {
  margin-bottom: 32px;
}
@media (max-width: 499px) {
  .crew-text p {
    margin-bottom: 20px;
  }
}
.crew-text p:last-child {
  margin-bottom: 0;
}
.crew-grid {
  display: grid;
  grid-template-columns: 372px repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 1199px) {
  .crew-grid {
    grid-template-columns: 292px repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .crew-grid {
    grid-template-columns: 260px repeat(3, 1fr);
    width: max-content;
  }
}
@media (max-width: 499px) {
  .crew-grid {
    grid-template-columns: 136px repeat(3, 1fr);
  }
}
.crew-grid::before {
  display: inline-block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.71) 71%, rgb(255, 255, 255) 100%);
  z-index: 1;
}
@media (max-width: 1199px) {
  .crew-grid::before {
    content: none;
  }
}
@media (max-width: 991px) {
  .crew-grid::before {
    content: "";
  }
}
.crew-grid::after {
  display: inline-block;
  content: "";
  position: absolute;
  width: calc(100vw - var(--scrollbar-width));
  height: calc(100% + 80px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url("/images/ship-logo.svg");
  background-size: 240px;
  background-position: calc(100% - 24px) bottom;
  background-repeat: no-repeat;
  z-index: 2;
}
@media (max-width: 991px) {
  .crew-grid::after {
    width: calc(100vw - var(--scrollbar-width));
    left: 0;
    transform: translateY(-50%);
    background-position: calc(100% - 48px) bottom;
    background-size: 180px;
  }
}
@media (max-width: 499px) {
  .crew-grid::after {
    background-size: 104px;
  }
}
.crew-grid .arrow-captain {
  display: inline-block;
  position: absolute;
  right: 100%;
  top: 100%;
  width: 265px;
  height: 120px;
  mask-image: url("/images/pace.svg");
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("/images/pace.svg");
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  z-index: 10;
  background-color: #AEB8CB;
}
@media (max-width: 1199px) {
  .crew-grid .arrow-captain {
    display: none;
  }
}
.crew-grid .member {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
.crew-grid .member.big {
  grid-row: span 2;
}
@media (max-width: 991px) {
  .crew-grid .member:not(.big) {
    aspect-ratio: 1/1;
    max-width: 176px;
  }
}
@media (max-width: 499px) {
  .crew-grid .member:not(.big) {
    max-width: 108px;
  }
}
.crew-grid .member-description {
  display: flex;
  align-items: center;
  column-gap: 16px;
  position: absolute;
  bottom: 24px;
  left: 20px;
  color: #fff;
}
@media (max-width: 499px) {
  .crew-grid .member-description {
    display: none;
  }
}
.crew-grid .member-description__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #000B22;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .crew-grid .member-description__ico {
    width: 60px;
    height: 60px;
  }
}
.crew-grid .member-description__ico::before {
  display: inline-block;
  content: "";
  width: 56px;
  height: 56px;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  mask-image: url("/images/captain.svg");
  -webkit-mask-image: url("/images/captain.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #6AEACA;
}
@media (max-width: 991px) {
  .crew-grid .member-description__ico::before {
    width: 40px;
    height: 40px;
  }
}
.crew-grid .member-description__rest {
  display: flex;
  flex-direction: column;
  line-height: 1.38;
  text-transform: uppercase;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.crew-grid .member-description__rest strong {
  font-size: 22px;
}
@media (max-width: 991px) {
  .crew-grid .member-description__rest strong {
    font-size: var(--size-bigger);
  }
}
.crew-grid .member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   BLOG STYLES
   ======================================== */
/* Blog listing */
.blog-listing {
  padding-bottom: 360px;
}

/* Navigace kategorií */
.blog-categories-nav {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.blog-categories-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.blog-categories-nav__item {
  margin: 0;
}

.blog-categories-nav__link {
  display: inline-block;
  padding: 10px 20px;
  font-size: var(--size-body);
  font-weight: 600;
  color: #617AAC;
  text-decoration: none;
  border: 2px solid #617AAC;
  border-radius: 8px;
  transition: all ease 300ms;
  background: transparent;
}

.blog-categories-nav__link:hover {
  color: #2D4473;
  border-color: #2D4473;
  background: rgba(45, 68, 115, 0.05);
}

.blog-categories-nav__link.active {
  color: #ffffff;
  background: #2D4473;
  border-color: #2D4473;
}

.blog-categories-nav__link.active:hover {
  background: #0F234D;
  border-color: #0F234D;
  color: #ffffff;
}

@media (max-width: 768px) {
  .blog-categories-nav {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  
  .blog-categories-nav__list {
    gap: 8px 12px;
  }
  
  .blog-categories-nav__link {
    padding: 8px 16px;
    font-size: var(--size-smaller);
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.blog-card__image {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}
.blog-card__content {
  padding: 30px;
}
.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #666;
}
.blog-card__date {
  color: #2D4473;
  font-weight: 500;
}
.blog-card__category a {
  color: #617AAC;
  text-decoration: none;
  font-weight: 500;
}
.blog-card__category a:hover {
  color: #2D4473;
}
.blog-card__title {
  margin: 0 0 15px 0;
  font-size: 20px;
  line-height: 1.3;
}
.blog-card__title a {
  color: #0F234D;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-card__title a:hover {
  color: #2D4473;
}
.blog-card__excerpt {
  margin-bottom: 20px;
  color: #666;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-card__footer {
  margin-top: auto;
}

.blog-empty {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}
.blog-empty h3 {
  margin-bottom: 15px;
  color: #0F234D;
}

/* Blog pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.blog-pagination .page-numbers {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog-pagination .page-numbers li {
  margin: 0;
}
.blog-pagination .page-numbers a,
.blog-pagination .page-numbers span {
  display: block;
  padding: 10px 15px;
  background: white;
  color: #0F234D;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.blog-pagination .page-numbers a:hover, .blog-pagination .page-numbers a.current,
.blog-pagination .page-numbers span:hover,
.blog-pagination .page-numbers span.current {
  background: #2D4473;
  color: white;
  border-color: #2D4473;
}

/* Blog single page */
.blog-content {
  padding: 0px 0px 360px 0px;
}

.blog-article {
  max-width: 100%;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  padding: 20px 60px 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.blog-article__content {
  margin-bottom: 40px;
}

/* Odstranění duplicitního footeru z Gutenberg obsahu */
.blog-article__content .entry-footer,
.blog-article__content footer:not(.blog-article__footer),
.blog-article__content .wp-block-group:has(> footer) {
  display: none !important;
}
.blog-article__content h2 {
  color: #0F234D;
  margin-top: 40px;
  margin-bottom: 20px;
}
.blog-article__content h3 {
  color: #2D4473;
  margin-top: 30px;
  margin-bottom: 15px;
}
.blog-article__content p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #333;
}
.blog-article__content ul,
.blog-article__content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}
.blog-article__content li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.blog-article__content blockquote {
  border-left: 4px solid #2D4473;
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #666;
}
.blog-article__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}
.blog-article__footer {
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.blog-tags {
  margin-bottom: 30px;
}
.blog-tags a {
  color: #617AAC;
  text-decoration: none;
  margin-right: 10px;
  padding: 5px 10px;
  background: #f8f9fa;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.blog-tags a:hover {
  background: #2D4473;
  color: white;
}

/* Sekce s dalšími články */
.blog-related {
  margin-top: 60px;
}

.blog-related__title {
  font-size: 28px;
  color: #0F234D;
  margin-bottom: 40px;
  text-align: center;
}

@media (max-width: 768px) {
  .blog-related {
    margin-top: 40px;
    padding-top: 40px;
  }
  
  .blog-related__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.blog-not-found {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.blog-not-found h1 {
  color: #0F234D;
  margin-bottom: 15px;
}
.blog-not-found p {
  color: #666;
  margin-bottom: 30px;
}

/* Blog meta v hero sekci */
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  font-size: 16px;
}

.blog-date {
  color: #BFC9DF;
  font-weight: 600;
}

.blog-category a {
  color: #BFC9DF;
  text-decoration: none;
  font-weight: 600;
  transition: color ease 300ms;
}
.blog-category a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Autor odstraněn - CSS ponecháno pro případné budoucí použití */
.blog-author {
  display: none;
}

/* Responsive design */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .blog-article {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .blog-listing {
    padding-bottom: 260px;
  }
  .blog-content {
    padding-bottom: 260px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .blog-card__content {
    padding: 20px;
  }
  .blog-article {
    padding: 30px 20px;
  }
  .blog-meta {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .blog-card__content {
    padding: 15px;
  }
  .blog-article {
    padding: 20px 15px;
  }
  .blog-card__title {
    font-size: 18px;
  }
}
.testimonials.limited {
  padding-top: 0;
}
@media (max-width: 991px) {
  .testimonials.limited {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .testimonials.limited {
    padding-top: 0;
  }
}

.introduction.big .hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .introduction.big .hero-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
}
.introduction.big .hero-text {
  flex: 1;
}
.introduction.big .hero-text h1 {
  margin-bottom: 20px;
}
.introduction.big .hero-text p {
  margin-bottom: 30px;
  max-width: 500px;
}
@media (max-width: 991px) {
  .introduction.big .hero-text p {
    max-width: none;
  }
}
.introduction.big .hero-icon {
  flex-shrink: 0;
}
.introduction.big .hero-icon img {
  width: 120px;
  height: auto;
}

.ratings {
  padding: 12px;
  margin-bottom: 80px;
}
.ratings__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  background: #fff;
  border: 2px solid #205AEE;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 24px;
}
@media (max-width: 991px) {
  .ratings__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.ratings__title {
  margin: 0 0 16px 0;
  line-height: 1.2;
  color: #2C3B60;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.03em;
}
.ratings__title span {
  display: block;
}
.ratings__subtitle {
  margin: 0;
  color: #4E4E4E;
  font-size: 16px;
  line-height: 1.6;
}
.ratings__middle {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .ratings__middle {
    justify-content: flex-start;
  }
}
.ratings__logos {
  max-width: 100%;
  height: 64px;
  object-fit: contain;
}
.ratings__right {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .ratings__right {
    justify-content: flex-start;
  }
}

.ratings .btn {
  background: #6AEACA;
  color: #000B22;
  font-weight: 900;
}
.ratings .btn:hover {
  background: #5dd8b8;
  color: #fff;
}
.ratings .btn:hover .arrow {
  color: #fff;
}

.services-cards {
  padding: 80px 0;
}
.services-cards__header {
  text-align: center;
  margin-bottom: 60px;
}
.services-cards__header h2 {
  margin-bottom: 20px;
  color: #383838;
}
.services-cards__header .subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: #4E4E4E;
  line-height: 1.6;
}
.services-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 767px) {
  .services-cards__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.service-card {
  padding: 32px 24px;
  background: #383838;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  position: relative;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
}
@media (max-width: 767px) {
  .service-card {
    padding: 24px 20px;
  }
}

.service-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #205AEE;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.service-card__icon {
  margin-bottom: 20px;
}
.service-card__icon img {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1);
}

.service-card h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.service-card p {
  margin: 0 0 24px;
  color: #E5E9F1;
  line-height: 1.6;
  font-size: 15px;
}

.service-card .btn {
  width: 100%;
  justify-content: center;
}

.main-navi li a.active {
  color: #205AEE;
  font-weight: 600;
}

.knowledges-wrapper {
  margin-top: 40px;
  padding-block: 20px;
  padding-inline: 20px;
  margin-inline: -20px;
  padding-bottom: 360px;
}
.page-template-rekli-o-nas-php .knowledges-wrapper{
  padding-top: 0px;
  margin-top: 0px;
}

@media (max-width: 768px){
  .page-template-rekli-o-nas-php .knowledges-wrapper {
  padding-bottom: 200px;
}
}
.knowledges::before {
  display: inline-block;
  content: "";
  position: absolute;
  width: calc(100vw - var(--scrollbar-width));
  max-width: 1920px;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url(/images/rope.svg);
  background-size: 648px 100%;
  background-position: right center;
  background-repeat: no-repeat;
}

.services-cards::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background-image: url("/images/rope.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: -1;
}

/* ===== Kontaktní stránka ===== */
.introduction.small .introduction-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding-block: 120px 80px;
}
@media (max-width: 991px) {
  .introduction.small .introduction-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
    padding-block: 80px 60px;
  }
}
.introduction.small .introduction-inner__image {
  width: 180px;
  height: 180px;
}
@media (max-width: 991px) {
  .introduction.small .introduction-inner__image {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }
}
.introduction.small .introduction-inner__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.introduction.small .introduction-inner__text h1 {
  font-size: var(--size-h1);
  font-weight: 900;
  color: #fff;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .introduction.small .introduction-inner__text h1 {
    font-size: var(--size-h2);
  }
}
.introduction.small .introduction-inner__text p {
  font-size: var(--size-body);
  color: #fff;
  line-height: 1.6;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .introduction.small .introduction-inner__text p {
    font-size: var(--size-smaller);
  }
}
@media (max-width: 991px) {
  .introduction.small .introduction-inner .btn-holder {
    margin-top: 20px;
  }
}

.contact-info {
  position: relative;
  padding-block: 80px;
  padding: 0px 0px 100px;
}
@media (max-width: 768px){
  .contact-info {
      padding: 0px 0px 60px;
  }
  }
.contact-info::before {
  display: inline-block;
  content: "";
  position: absolute;
  width: calc(100vw - var(--scrollbar-width));
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url(/images/rope2.svg);
  background-size: 600px 100%;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: 0;
}
.contact-info > * {
  position: relative;
  z-index: 1;
}
.contact-info h2 {
  font-size: var(--size-h2);
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .contact-info h2 {
    font-size: var(--size-h3);
  }
}
.contact-info .subtitle {
  font-size: var(--size-body);
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
  opacity: 0.9;
}
@media (max-width: 991px) {
  .contact-info .subtitle {
    font-size: var(--size-smaller);
    margin-bottom: 40px;
  }
}
.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .contact-info__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.contact-info__card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  border: none;
  box-shadow: 0 4px 12px rgba(15, 35, 77, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 491px;
}
.contact-info__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 35, 77, 0.2);
}
@media (max-width: 991px) {
  .contact-info__card {
    padding: 20px;
  }
}
.contact-info__card:nth-child(1), .contact-info__card:nth-child(2) {
  background: #fff;
  border: none;
  position: relative;
}
.contact-info__card:nth-child(1) .contact-info__icon img, .contact-info__card:nth-child(2) .contact-info__icon img {
  filter: none;
}
.contact-info__card--map {
  background: url(/images/kontakt-mapaV3.png) center bottom;
  background-size: cover;
  position: relative;
  padding-top: 24px;
}
.contact-info__card--map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  border-radius: 12px;
  z-index: 0;
}
.contact-info__card--map > * {
  position: relative;
  z-index: 1;
}
.contact-info__card--map .contact-info__header,
.contact-info__card--map .contact-info__icon {
  display: none;
}
.contact-info__header {
  margin-bottom: 0px;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  padding: 5px 10px;
  border-radius: 0px 10px 0px 10px;
  background-color: #0F234C;
  color: white;
}
.contact-info__header span {
  font-size: var(--size-smaller);
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-info__icon {
  margin-bottom: 20px;
}
.contact-info__icon img {
  max-width: 144px;
  width: auto;
  height: auto;
  filter: brightness(0) invert(1);
}
.contact-info h3 {
  font-size: var(--size-h4);
  font-weight: 900;
  color: #2C3B60;
  margin-bottom: 16px;
  text-transform: uppercase;
  text-align: left;
}
@media (max-width: 991px) {
  .contact-info h3 {
    font-size: var(--size-body);
  }
}
.contact-info__description {
  font-size: var(--size-smaller);
  color: #444E60;
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0.9;
  text-align: left;
}
.contact-info__description strong {
  color: #444E60;
  font-weight: 600;
}
.contact-info__description--map {
  margin-bottom: 10px;
}
.contact-info__btn {
  width: 100%;
}
.contact-info__btn .btn {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.main-navi li a.active {
  color: #205AEE;
  font-weight: 600;
}

.contact-us.container.small {
  position: relative;
  z-index: 2;
  padding-top: 100px;;
}
@media (max-width: 768px){
  .contact-us.container.small {
      padding-top: 60px !important;
  }
  }
.contact-details::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background-image: url("/images/majacek-02.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: -1;
}

/* ===== Stránka doplnky.html ===== */
.gradient.anchor.limited.last .knowledges {
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .gradient.anchor.limited.last .knowledges {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .gradient.anchor.limited.last .knowledges {
    margin-bottom: 40px;
  }
}
.gradient.anchor.limited.last .contact-us {
  padding-top: 0;
}

.main-navi li a.active {
  color: #205AEE;
  font-weight: 600;
}

/* ========================================
   SLUŽBY PAGE STYLES
   ======================================== */
.about {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  column-gap: 72px;
  row-gap: 28px;
  position: relative;
  padding-block: 60px 130px;
  margin-bottom: 80px;
}
@media (max-width: 1600px) {
  .about {
    padding-bottom: 60px;
  }
}
@media (max-width: 1199px) {
  .about {
    flex-direction: column;
    row-gap: 28px;
  }
}
@media (max-width: 767px) {
  .about {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.about::before {
  display: inline-block;
  content: "";
  position: absolute;
  width: calc(100vw - var(--scrollbar-width));
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url("/images/rope2.svg");
  background-size: 600px 100%;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.about > div {
  position: relative;
  z-index: 1;
}
.about .about-text {
  flex: 0 0 calc(50% - 36px);
  max-width: calc(50% - 36px);
}
@media (max-width: 1199px) {
  .about .about-text {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.about .about-photo {
  flex: 0 0 calc(50% - 36px);
  max-width: calc(50% - 36px);
}
@media (max-width: 1199px) {
  .about .about-photo {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.about .about-text-second {
  margin: 50px auto;
  margin-bottom: 0px;
  padding: 3%;
  background: #ffffff80;
  border-radius: 16px;
}
@media (max-width: 1199px) {
  .about .about-text-second {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0;
  }
}
@media (max-width: 768px){
  .about .about-text-second {
    margin: 20px auto;
    margin-bottom: 0px;
    padding: 0%;
    background: #ffffff00;
}
}
.about .about-text-second img {
  display: block;
  margin: 0 auto;
}
.about .about-text-second .aligncenter {
  display: block;
  margin: 0 auto;
}
.about .about-btn {
  flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
  margin-top: 24px;
}
.about-text {
  position: relative;
}
.about-text::before {
  display: inline-block;
  content: "";
  position: absolute;
  width: 400px;
  max-width: 100%;
  height: 66px;
  left: 32px;
  bottom: calc(100% + 60px);
  background-image: url("/images/birds.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1439px) {
  .about-text::before {
    bottom: calc(100% + 12px);
  }
}
@media (max-width: 1199px) {
  .about-text::before {
    width: 300px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .about-text::before {
    width: 200px;
    height: 33px;
  }
}
.about-text h2 {
  margin: 0 0 16px;
}
.about-text p:last-child {
  margin-bottom: 0;
}
.about-text .btn-holder {
  margin-top: 24px;
}
.about-photo img {
  border-radius: 16px;
  width: 100%;
  height: auto;
}

/* ========================================
   404 ERROR PAGE STYLES
   ======================================== */
.my-error-404 .introduction.small .introduction-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
}
.my-error-404 .introduction.small .introduction-inner .btn-holder {
    margin-left: 0px;
}
.my-error-404 .introduction.small .introduction-inner__text h1 {
    text-align: center;
}
.my-error-404 .introduction.small .introduction-inner__text {
    text-align: center;
}
.my-error-404 .introduction.small .introduction-inner p:last-child {
    margin: 0px auto;
}
.error-404 {
  padding: 10px 0px 250px;
}
.error-404__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.error-404__content h2 {
  color: #0F234D;
  margin-bottom: 40px;
  font-size: 32px;
}
.error-404__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}
.error-404__link-group h3 {
  color: #2D4473;
  margin-bottom: 20px;
  font-size: 20px;
}
.error-404__link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.error-404__link-group li {
  margin-bottom: 10px;
}
.error-404__link-group a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 8px 0;
}
.error-404__link-group a:hover {
  color: #2D4473;
}
.error-404__search {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.error-404__search h3 {
  color: #0F234D;
  margin-bottom: 20px;
  font-size: 20px;
}

.search-form {
  display: flex;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}
.search-form input[type=search] {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}
.search-form input[type=search]:focus {
  outline: none;
  border-color: #2D4473;
}
.search-form button {
  padding: 15px 25px;
  white-space: nowrap;
}

/* Responsive design pro 404 */
@media (max-width: 768px) {
  .error-404 {
    padding: 10px 0px 200px;
  }
  .error-404__content h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .error-404__links {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  .error-404__search {
    padding: 30px 20px;
  }
  .search-form {
    flex-direction: column;
  }
  .search-form button {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .error-404__content h2 {
    font-size: 24px;
  }
  .error-404__search {
    padding: 20px 15px;
  }
}

/* ========================================
   OBECNÉ STYLY PRO REFERENCES SEKCI
   (aplikují se na všechny stránky kromě rekli-o-nas.php)
   ======================================== */

/* Styly pro references sekci na všech stránkách kromě rekli-o-nas.php */
body:not(.page-template-rekli-o-nas-php) .references {
  max-width: 1920px;
  padding-inline: 24px;
  margin-bottom: 140px;
  margin-inline: auto;
}

@media (max-width: 991px) {
  body:not(.page-template-rekli-o-nas-php) .references {
    flex-direction: column;
    margin-bottom: 100px;
  }
}

@media (max-width: 767px) {
  body:not(.page-template-rekli-o-nas-php) .references {
    margin-bottom: 72px;
  }
}

@media (max-width: 499px) {
  body:not(.page-template-rekli-o-nas-php) .references {
    margin-bottom: 48px;
  }
}

/* Pozadí s lanem pro references sekci */
body:not(.page-template-rekli-o-nas-php):not(.single-sluzby) .references::before {
  display: inline-block;
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(100% - 100px);
  width: 450px;
  height: 600px;
  background-image: url("/images/rope-half.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left bottom;
}

@media (max-width: 1439px) {
  body:not(.page-template-rekli-o-nas-php):not(.single-sluzby) .references::before {
    width: 300px;
    height: 400px;
  }
}

@media (max-width: 1199px) {
  body:not(.page-template-rekli-o-nas-php):not(.single-sluzby) .references::before {
    width: 200px;
    height: 300px;
  }
}

@media (max-width: 991px) {
  body:not(.page-template-rekli-o-nas-php):not(.single-sluzby) .references::before {
    content: none;
  }
}

/* Nadpis a podnadpis */
body:not(.page-template-rekli-o-nas-php) .references h2 {
  text-align: center;
}

body:not(.page-template-rekli-o-nas-php) .references .subtitle {
  max-width: 640px;
  text-align: center;
}

/* Swiper container */
body:not(.page-template-rekli-o-nas-php) .references-swiper {
  margin-top: 60px;
}

@media (max-width: 1199px) {
  body:not(.page-template-rekli-o-nas-php) .references-swiper {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  body:not(.page-template-rekli-o-nas-php) .references-swiper {
    margin-top: 28px;
  }
}

/* References wrapper */
body:not(.page-template-rekli-o-nas-php) .references-wrap {
  position: relative;
  padding-inline: 208px;
  margin-inline: auto;
  width: calc(100% - 108px);
}

@media (max-width: 1600px) {
  body:not(.page-template-rekli-o-nas-php) .references-wrap {
    width: var(--container-width);
    padding-inline: 100px;
  }
}

@media (max-width: 991px) {
  body:not(.page-template-rekli-o-nas-php) .references-wrap {
    width: 100%;
  }
}

@media (max-width: 767px) {
  body:not(.page-template-rekli-o-nas-php) .references-wrap {
    margin-inline: -20px;
    width: calc(100% + 40px);
    padding-inline: 48px;
  }
}

/* Reference items */
body:not(.page-template-rekli-o-nas-php) .references .reference {
  line-height: 1.6;
}

body:not(.page-template-rekli-o-nas-php) .references .reference:last-child .reference-text::after {
  content: none;
}

body:not(.page-template-rekli-o-nas-php) .references .reference-text {
  position: relative;
  text-align: justify;
}

body:not(.page-template-rekli-o-nas-php) .references .reference-text .toggle-more {
  color: #6AEACA;
  text-decoration: none;
  font-weight: 600;
}

body:not(.page-template-rekli-o-nas-php) .references .reference-text .toggle-more:hover {
  text-decoration: underline;
}

/* Vertikální čára mezi referencemi */
body:not(.page-template-rekli-o-nas-php) .references .reference-text::after {
  display: inline-block;
  content: "";
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
  height: 72%;
  width: 1px;
  background-color: #000;
}

@media (max-width: 991px) {
  body:not(.page-template-rekli-o-nas-php) .references .reference-text::after {
    content: none;
  }
}

/* Jméno a pozice */
body:not(.page-template-rekli-o-nas-php) .references .reference-name {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  text-transform: uppercase;
  color: #000;
  font-size: var(--size-bigger);
}

@media (max-width: 1600px) {
  body:not(.page-template-rekli-o-nas-php) .references .reference-name {
    margin-top: 20px;
    font-size: var(--size-body);
  }
}

body:not(.page-template-rekli-o-nas-php) .references .reference-name .name {
  font-size: var(--size-h4);
  font-weight: 900;
  font-family: "Plus Jakarta Sans", sans-serif;
}

@media (max-width: 1600px) {
  body:not(.page-template-rekli-o-nas-php) .references .reference-name .name {
    font-size: var(--size-bigger);
  }
}
/* ========================================
   PULZUJÍCÍ ANIMACE PRO SHOPTET BADGES
   ======================================== */

/* Keyframes pro pulzující animaci */
@keyframes badge-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.10);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.introduction .badges .badge {
  animation: badge-pulse 5s ease-in-out infinite;
  transition: all 0.3s ease;
}
.introduction .badges .badge.shoptet-premium {
  animation-delay: 0s;
}

.introduction .badges .badge.shoptet-golden {
  animation-delay: 2.0s;
}
.introduction .badges .badge:hover {
  animation-play-state: paused;
  transform: scale(1.4);
  filter: brightness(1.4);
}
@media (max-width: 768px) {
  .introduction .badges .badge {
    animation-duration: 6s; /* Pomalejší animace na mobilech */
  }
}
/*# sourceMappingURL=main.css.map */

/* ========================================
   TLAČÍTKO "ZOBRAZIT DALŠÍ RECENZE" - STRÁNKA "ŘEKLI O NÁS"
   ======================================== */

/* Zajištění konzistentního display inline-flex */
#load-more-reviews {
    display: inline-flex !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Zajištění konzistentního vzhledu po kliknutí */
#load-more-reviews:focus,
#load-more-reviews:active,
#load-more-reviews:visited,
#load-more-reviews:hover {
    display: inline-flex !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Odstranění defaultních browser stylů pro button */
#load-more-reviews {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}







/* POP UP STRÁNKA */
/*
*   TOOLKIT 1.0.0
*   WEBOTVURCI
*/

.prev-column {
display: flex;
height: auto;
align-items: center;
padding-top: 4%;
justify-content: center;
margin-bottom: 5%;
}

.w_tooklit_slider {
    position: fixed;
    right: 0;
    top: 0;
    height: 30%;
    border-radius: 15px 0 0 15px;
    /* background-color: rgb(171, 212, 245); */
    /* background-color: rgb(132, 196, 248); */
    background-color:#afe473;
    transition: all .5s ease-in-out;

    flex-direction: column;
    justify-content: left;
    display: flex;
    width: 35px;
}

.w_toolkit_slider_title {
    position: absolute;
    /* top: 0; */
    /* left: 0; */
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    /* transform: rotate(-90deg); */
    height: 100%;
    vertical-align: middle;
    justify-content: center;
    letter-spacing: 1px;
    /* width: 50%; */
    align-items: center;
    margin: 0px;
    padding: 0px 10px;
    color: #4d4d4d;
    /* background-color: rgb(132, 196, 248); */
    background-color:#8bc34a;
    font-size: 14px;
    font-family: Helvetica, Arial;
    border-radius: 15px 0 0 15px;
    cursor: pointer;
}



.user-side {
    padding: 0;
    margin-left: 0;
    flex-direction: column;
    justify-content: center;
    display: flex;
    height: 100%;
}

.user-side br {
display: none;
}

.user-side span {
font-family: 'Poppins', sans-serif;
font-size: 16px;
line-height: 30px;

font-weight: 600;
text-transform: uppercase;
}


.w_tooklit_slider span {
    font-weight: bold;
    text-transform: uppercase;
    font-family: sans-serif;
    letter-spacing: 1px;
    font-size: 12px;
    text-align: left;
    color: #4d4d4d;
    margin-bottom: 5px;
font-family: 'Poppins', sans-serif;
font-size: 16px;
line-height: 30px;
font-weight: 300;
}

.user-side input {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 6px 12px;
    margin-bottom: 2em;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    color: #7f7f7f;
    width: 100%;
}

.user-side textarea {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 6px 12px;
    margin-bottom: 2em;
    height: 100px;
    resize: none;
    background-color: #f4f4f5;
font-family: 'Poppins', sans-serif;
font-size: 16px;
font-weight: 300;
line-height: 30px;
    width: 100%;
}

.row-gen-variables {
    display: flex;
    background-color: #fff;
    padding: 0;
    margin: 0;
}

.column-gen-variables-preview {
    width: 50%;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;

}
.column-gen-variables-editor {
    width: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40vw;
}
.column-gen-variables-code {
    width: 100%;
    display: flex;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
}
.column-gen-variables-code p {
    display: none;
}

.column-gen-variables-code textarea {
    /* background-color: #fff; */
    background-color: #fff;
    resize: none;
    border: none;
    font-size: 14px;
    width: 95%;
    height: 30vw;
    display: flex;
    justify-content: left;
    align-items: center;
    margin: 0 auto;
    position: relative;
    top: 2vw;
    bottom: 2vw;
}

.column-gen-variables-code a {
margin: 0;
display: inline-flex;
border: none;
color: #fff;
background: rgb(255, 73, 124);
padding: 16px;
font-size: 16px;
letter-spacing: 1px;
width: 100%;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
font-weight: 500;
}

.column-gen-variables-code h2:hover {
opacity: 0.8;
}

#selectable {
    width: 100%;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;
            cursor: copy;
  height: auto;
display: none;
}
.column-gen-variables {
    font-size: 14px;
    width: 95%;
    line-height: 1.5;
    height: auto;
    align-content: center;
    display: flex;
    align-items: center;
    margin: 2em auto;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.column-gen-variables span {
  display: none;
}

#copied-text {
margin: 0;
border: none;
color: #fff;
background: rgb(255, 73, 124, 0.57);
padding: 16px;
font-size: 16px;
letter-spacing: 1px;
width: 100%;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
font-weight: 500;
min-height: 62px;
}

@media screen and (max-width: 991px) {
    .prev-column {
      padding-top: 0;
      padding-bottom: 50px;

    }
  }
@media screen and (max-width: 600px) {
    .column {
      width: 100%;
    }
  }

  #cboxClose:before {
    font-family: "Font Awesome 5 Free";
	content: "\f3c5";
	display: inline-block;
	padding-right: 10px;
	font-size: 20px;
	vertical-align: middle;
	font-weight: 900;
	margin-left: -42px;
	/* background: #1a6fba; */
	text-align: center;
	width: 30px;
    color: #f7f5f5;
  }

#column-8aa8df8 {
    background: #e6e6e6;
    min-height: 618px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

#column-3e0919f{
    background: #e6e6e6;
    padding: 2rem;
}

#column-4f84989 {
    background: #e6e6e6;
    padding: 2rem;
top: 2px;
}

@media screen and (max-width: 1000px) {
    #column-8aa8df8 {
    height: auto;
top: 1px;
}
  }

@media screen and (max-width: 600px) {
    #column-8aa8df8 {
        height: 586px !important;
    }
}

#get_select {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 6px 12px;
    background-color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    color: #7f7f7f;
}

/* ========================================
   RANK MATH BREADCRUMBS STYLES
   ======================================== */
.breadcrumbs-wrapper {
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumbs-wrapper .rank-math-breadcrumb p {
    margin: 0;
    line-height: 1.6;
}

.breadcrumbs-wrapper .rank-math-breadcrumb a {
    color: #6AEACA !important;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumbs-wrapper .rank-math-breadcrumb a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.breadcrumbs-wrapper .rank-math-breadcrumb .separator {
    color: #ffffff;
    margin: 0 8px;
}

.breadcrumbs-wrapper .rank-math-breadcrumb .last {
    color: #ffffff;
}
/* ========================================
   Děkovací stránka - Thank You Page 
======================================== */
.thank-you-page.introduction.small .introduction-inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-items: center !important;
    justify-items: center !important;
    text-align: center !important;
    gap: 0 !important;
    padding-block: 160px 40px;
}

@media (max-width: 991px) {
    .thank-you-page.introduction.small .introduction-inner {
        padding-block: 120px 40px;
    }
}

@media (max-width: 767px) {
    .thank-you-page.introduction.small .introduction-inner {
        padding-block: 100px 40px;
    }
}

.thank-you-page .thank-you-content,
.thank-you-page .introduction-inner__text {
    text-align: center !important;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.thank-you-page .introduction-inner__text h1 {
    text-align: center !important;
    margin-bottom: 32px;
    font-size: var(--size-h1);
}

@media (max-width: 767px) {
    .thank-you-page .introduction-inner__text h1 {
        font-size: var(--size-h2);
        margin-bottom: 24px;
    }
}

.thank-you-page .introduction-inner__text .subtitle {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
    max-width: 100%;
    font-size: var(--size-bigger);
    line-height: 1.6;
}

.thank-you-page .introduction-inner__text .subtitle:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .thank-you-page .introduction-inner__text .subtitle {
        font-size: var(--size-body);
    }
}

.thank-you-page .introduction-inner__text .link-primary {
    color: #6AEACA;
    text-decoration: underline;
    transition: color ease 300ms;
}

.thank-you-page .introduction-inner__text .link-primary:hover {
    color: #41CFAB;
}

.thank-you-buttons {
    padding: 60px 24px;
    text-align: center;
}

/* Styly pro ratings sekci na děkovací stránce */
body.page-template-dekujeme-php .ratings {
    padding-bottom: 360px;
    padding-top: 60px;
    margin-bottom: 0px;
}

/* Styly pro knowledges sekci na děkovací stránce */
body.page-template-dekujeme-php .knowledges {
    margin-top: -60px;
}

.thank-you-buttons .btn-holder {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0;
}

@media (max-width: 767px) {
    .thank-you-buttons {
        padding: 40px 24px;
    }
    
    .thank-you-buttons .btn-holder {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-buttons .btn-holder a {
        width: 100%;
        max-width: 100%;
    }
    
    /* Styly pro knowledges sekci na děkovací stránce - mobil */
    body.page-template-dekujeme-php .knowledges {
        margin-top: -30px;
    }
}

/* ==========================================================================
   Videos section — série Shoptet Premium na stránce AI služby
   ========================================================================== */
.videos-section {
    padding: 72px 24px 64px;
    margin-inline: auto;
    position: relative;
    z-index: 1;
}
.videos-section__header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}
.videos-section__header h2 {
    margin: 0 0 12px;
}
.videos-section__header .subtitle {
    margin: 0;
    color: #2D4473;
}
.videos-section__intro {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto 56px;
}
.videos-section__short {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.videos-section__intro-copy h3 {
    margin: 0 0 12px;
    color: #0F234D;
}
.videos-section__intro-copy p {
    margin: 0 0 20px;
    color: #2D4473;
    line-height: 1.55;
}
.videos-section__label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    font-weight: 600;
    color: #617AAC;
}
.videos-section__episodes {
    max-width: 1280px;
    margin-inline: auto;
}
.videos-section__episodes .videos-section__label {
    display: block;
    text-align: center;
    margin: 0 0 24px;
}

/* Lite-embed thumbnail tlačítko */
.video-thumb {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 14px;
    background-color: #0F234D;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 35, 77, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.video-thumb:hover,
.video-thumb:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(15, 35, 77, 0.28);
    outline: none;
}
.video-thumb:focus-visible {
    box-shadow: 0 14px 36px rgba(15, 35, 77, 0.28), 0 0 0 3px #617AAC;
}
.video-thumb--classic {
    aspect-ratio: 16 / 9;
}
.video-thumb--short {
    aspect-ratio: 9 / 16;
    max-width: 320px;
    width: 100%;
}
.video-thumb__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 0;
    pointer-events: none;
}
.video-thumb__play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 72px;
    height: 72px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.94);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, background-color 0.2s ease;
    pointer-events: none;
}
.video-thumb__play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 14px 0 14px 22px;
    border-color: transparent transparent transparent #0F234D;
}
.video-thumb:hover .video-thumb__play {
    background-color: #fff;
    transform: translate(-50%, -50%) scale(1.06);
}
.video-thumb--short .video-thumb__play {
    width: 60px;
    height: 60px;
}
.video-thumb--short .video-thumb__play::before {
    border-width: 11px 0 11px 18px;
}

/* Iframe po kliknutí — dědí aspect ratio dle modifikátoru */
.video-thumb-iframe {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(15, 35, 77, 0.18);
}
.video-thumb-iframe.video-thumb--classic {
    aspect-ratio: 16 / 9;
}
.video-thumb-iframe.video-thumb--short {
    aspect-ratio: 9 / 16;
    max-width: 320px;
}

/* Titulek pod thumbnailem */
.videos-section .video-title {
    margin: 14px 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #0F234D;
    line-height: 1.4;
}

/* Grid s 5 díly série — vidíme všechno najednou, žádný slider */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1280px;
    margin-inline: auto;
}
.videos-grid__item {
    display: flex;
    flex-direction: column;
}

/* Responsive */
@media (max-width: 1199px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (max-width: 991px) {
    .videos-section {
        padding: 48px 20px;
    }
    .videos-section__intro {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    .videos-section__short {
        align-items: center;
    }
    .videos-section__intro-copy {
        max-width: 560px;
        margin: 0 auto;
    }
}
@media (max-width: 575px) {
    .videos-section__header {
        margin-bottom: 28px;
    }
    .videos-section__intro {
        margin-bottom: 40px;
    }
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .video-thumb__play {
        width: 60px;
        height: 60px;
    }
    .video-thumb__play::before {
        border-width: 11px 0 11px 18px;
    }
}