.top-bar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background: rgba(128, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.top-bar__link {
  color: white;
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.3px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.top-bar__link strong {
  font-weight: 700;
  letter-spacing: 0.5px;
}
.top-bar__link i {
  color: #ff6b35;
  font-size: 15px;
}
.top-bar__link:hover {
  opacity: 0.8;
  cursor: pointer;
}

/* Rotation between two announcements */
.top-bar__link--1 {
  animation: topBarRotate 10s infinite;
}
.top-bar__link--2 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 20px;
  animation: topBarRotate 10s 5s infinite;
  opacity: 0;
}
.top-bar__link--2 i { color: #4caf50; }
@keyframes topBarRotate {
  0%, 40%  { opacity: 1; visibility: visible; pointer-events: auto; }
  45%, 95% { opacity: 0; visibility: hidden; pointer-events: none; }
  100%     { opacity: 1; visibility: visible; pointer-events: auto; }
}
.top-bar:hover .top-bar__link {
  animation-play-state: paused;
}

@media only screen and (max-width: 600px) {
  .top-bar {
    padding: 6px 8px;
  }
  .top-bar__link {
    font-size: 11px;
    line-height: 1.3;
    text-align: center;
  }
  .top-bar__link--2 {
    padding: 0 8px;
  }
}

.header {
  width: 100%;
  padding: 20px 50px 20px 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  position: fixed;
  top: 48px;
  left: 0;
  background: transparent;
  gap: 20px;
  transition: 0.4s;
}
.header--scrolled {
  background: rgba(255, 255, 255, 0.95);
  transition: 0.4s;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}
@media only screen and (max-width: 1150px) {
  .header {
    padding: 20px 20px;
  }
}
@media only screen and (max-width: 600px) {
  .header {
    top: 41px;
  }
}
.header__hamburger {
  display: none;
}
@media only screen and (max-width: 1150px) {
  .header__hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    position: relative;
    background: none;
    outline: none;
    text-decoration: none;
  }
  .header__hamburger span {
    background: black;
    width: 100%;
    height: 3px;
    border-radius: 15px;
    position: absolute;
    transition: 0.4s;
  }
  .header__hamburger .first {
    transform: translateY(-10px);
  }
  .header__hamburger .second {
    opacity: 1;
  }
  .header__hamburger .third {
    transform: translateY(10px);
  }
  .header__hamburger .first--open {
    transform: rotate(45deg);
    transition: 0.4s;
  }
  .header__hamburger .second--open {
    opacity: 0;
    transition: 0.4s;
  }
  .header__hamburger .third--open {
    transform: rotate(-45deg);
    transition: 0.4s;
  }
}
.header__logo {
  outline: none;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: none;
  margin-right: auto;
}
.header__logo img {
  height: 80px;
  filter: brightness(0) invert(1);
  transition: 0.4s;
}
@media only screen and (max-width: 1150px) {
  .header__logo img {
    height: 50px;
  }
}
.header--scrolled .header__logo img {
  filter: none;
}
.header__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media only screen and (max-width: 1270px) {
  .header__nav {
    gap: 15px;
  }
}
@media only screen and (max-width: 1150px) {
  .header__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    position: absolute;
    top: 100%;
    background: white;
    width: 100%;
    height: calc(100vh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 40px 10px;
    transition: 0.4s;
    transform: translateX(100vw);
  }
  .header__nav--open {
    transition: 0.4s;
    transform: translateX(0);
    z-index: 10000;
  }
}
.header__navLink {
  color: black;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: 0.4s;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.header__navLink:hover {
  transition: 0.4s;
  color: #800000;
  cursor: pointer;
}
.header__navLink--red {
  color: #800000;
}
.header__navLink--red:hover {
  transition: 0.4s;
  color: black;
  cursor: pointer;
}
.header__navLink--dropdown {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
}
.header__navLink--dropdown .dropDownLink {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: black;
  text-decoration: none;
  outline: none;
  transition: 0.4s;
}
.header__navLink--dropdown .dropDownLink i {
  font-size: 15px;
  transition: 0.4s;
}
.header__navLink--dropdown .dropDownLink:hover {
  transition: 0.4s;
  color: #800000;
  cursor: pointer;
}
.header__navLink--dropdown .dropDownLink--open {
  color: #800000;
}
.header__navLink--dropdown .dropDownLink--open i {
  transform: rotate(90deg);
}
@media only screen and (max-width: 1150px) {
  .header__navLink--dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.header__dropDown {
  top: 100%;
  border: 2px solid #800000;
  background: rgba(255, 255, 255, 0.97);
  padding: 20px 30px;
  margin: 20px 0 0 0;
  border-radius: 16px;
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  width: fit-content;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100vw - 40px);
}
@media only screen and (max-width: 1150px) {
  .header__dropDown {
    position: relative;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    top: unset;
    left: unset;
    transform: none;
    max-width: 100%;
    width: 100%;
    border: none;
    box-sizing: border-box;
    overflow-x: hidden;
  }
}
.header__dropDown {
  transition: 0.4s;
}
.header__dropDown--closed {
  transition: 0.4s;
  visibility: hidden;
  opacity: 0;
  margin: 0;
}
@media only screen and (max-width: 1150px) {
  .header__dropDown--closed {
    height: 0;
  }
}
.header__dropDown--small {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 15px 20px;
  gap: 4px;
  min-width: 220px;
}
.header__dropDown--small .header__dropDownSmallLink {
  margin: 0;
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
}
.header__dropDown--small .header__dropDownSmallLink i {
  font-size: 11px;
  color: #800000;
}
.header__dropDown--small .header__dropDownSmallLink:hover i {
  color: white;
}
.header__dropDownRightWrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
  padding-left: 30px;
}
@media only screen and (max-width: 1150px) {
  .header__dropDownRightWrapper {
    padding-left: 0;
  }
}
.header__dropDownBigLink {
  outline: none;
  font-size: 27px;
  color: black;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  font-weight: 800;
  line-height: 1.1em;
  margin: 0 0 20px 0;
}
.header__dropDownBigLink i {
  font-size: 14px;
  margin: 7px 5px 0 0;
}
.header__dropDownBigLink {
  transition: 0.4s;
}
.header__dropDownBigLink:hover {
  color: #800000;
}
.header__dropDownBigLink--green {
  color: #2f7d32;
}
.header__dropDownBigLink--green:hover {
  color: rgb(30.276744186, 80.523255814, 32.2093023256);
}
.header__dropDownBigLink--burgundy {
  color: #800000;
}
.header__dropDownBigLink--burgundy:hover {
  color: #5c0000;
}
@media only screen and (max-width: 1150px) {
  .header__dropDownBigLink {
    font-size: 20px;
  }
}
.header__dropDownSmallLink {
  line-height: 1.1em;
  color: black;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  text-align: left;
  margin: 0 0 0 20px;
  padding: 3px 0;
  word-wrap: nowrap;
  text-wrap: nowrap;
}
.header__dropDownSmallLink .new {
  font-size: 14px;
  color: #006ee9;
  font-weight: 700;
}
.header__dropDownSmallLink .new i {
  font-size: 12px;
}
.header__dropDownSmallLink {
  transition: 0.4s;
}
.header__dropDownSmallLink:hover {
  background: #800000;
  color: white;
  padding: 3px 10px;
}
.header__dropDownSmallLink:hover .new {
  color: white;
}
.header__dropDownLeftWrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  border-right: 2px solid #800000;
  padding-right: 30px;
}
.header__dropDownLeftWrapper .left {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 25px;
}
.header__dropDownLeftWrapper .right {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 25px;
}
.header__dropDownLeftWrapper .nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
@media only screen and (max-width: 1150px) {
  .header__dropDownLeftWrapper {
    border-right: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0 0 20px 0;
    width: 100%;
    padding-right: 0;
  }
  .header__dropDownSmallLink {
    margin-left: 10px;
    text-wrap: wrap;
    word-wrap: break-word;
    white-space: normal;
  }
}
@media only screen and (max-width: 600px) {
  .header__dropDownRightWrapper {
    order: -1;
    margin-bottom: 20px;
  }
  .header__dropDownLeftWrapper {
    order: 1;
  }
}
.header__dropDownMiddleLink {
  color: #800000;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: left;
  outline: none;
  text-decoration: none;
  gap: 5px;
  font-size: 18px;
  line-height: 1.1em;
  word-wrap: nowrap;
  text-wrap: nowrap;
}
.header__dropDownMiddleLink i {
  font-size: 15px;
  color: #800000;
}
.header__dropDownMiddleLink {
  transition: 0.4s;
}
.header__dropDownMiddleLink:hover {
  transition: 0.4s;
  opacity: 0.7;
}
@media only screen and (max-width: 1150px) {
  .header__dropDownMiddleLink {
    margin: 0 0 5px 0;
  }
}

/* ====== HEADER BADGES ====== */
.header__badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 2px 7px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 5px;
  position: relative;
  top: -1px;
}
.header__badge--hot {
  background: linear-gradient(135deg, #800000, #c00000);
  color: #fff;
}
.header__badge--new {
  background: linear-gradient(135deg, #0a6e2e, #12a044);
  color: #fff;
}

/* ====== HEADER SEARCH ====== */
.header__search {
  display: flex;
  align-items: center;
  position: relative;
}
.header__searchToggle {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  color: white;
  width: 40px;
  height: 40px;
  padding: 0;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header--scrolled .header__searchToggle {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.15);
}
.header--scrolled .header__searchToggle {
  color: #333;
}
.header__searchToggle:hover {
  color: #800000;
}
.header__searchForm {
  display: flex;
  align-items: center;
  background: white;
  border: 2px solid rgba(128, 0, 0, 0.2);
  border-radius: 25px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.header__searchForm--hidden {
  display: none;
}
.header__searchInput {
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  width: 240px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: transparent;
}
.header__searchInput::placeholder {
  color: #aaa;
  font-weight: 400;
}
.header__searchSubmit {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #800000;
  padding: 8px 10px;
  transition: 0.3s;
}
.header__searchSubmit:hover {
  color: #b30000;
}
.header__searchClose {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #999;
  padding: 8px 12px 8px 4px;
  transition: 0.3s;
}
.header__searchClose:hover {
  color: #800000;
}
.header__searchAutocomplete {
  position: fixed;
  background: white;
  border: 2px solid rgba(128, 0, 0, 0.15);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  z-index: 10001;
  max-height: 350px;
  overflow-y: auto;
}
.header__searchItem {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.2s;
}
.header__searchItem:last-child {
  border-bottom: none;
}
.header__searchItem:hover {
  background: rgba(128, 0, 0, 0.05);
  color: #800000;
}
.header__searchItem mark {
  background: rgba(128, 0, 0, 0.12);
  color: #800000;
  font-weight: 700;
  border-radius: 2px;
  padding: 0 2px;
}
.header__searchSource {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #999;
  font-style: italic;
  margin-top: 2px;
}
@media only screen and (max-width: 1150px) {
  .header__searchForm {
    position: fixed;
    top: 55px;
    left: 10px;
    right: 10px;
    width: auto;
    transform: none;
  }
  .header__searchInput {
    flex: 1;
    width: auto;
  }
  .header__searchAutocomplete {
    left: 10px;
    right: 10px;
    width: auto;
    max-width: calc(100vw - 20px);
  }
  .header__searchItem {
    white-space: normal;
    word-break: break-word;
  }
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.footer__contactInfo {
  width: 100%;
  padding: 90px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #800000;
  background-image: url("../images/particle.png");
  background-position: right;
  background-size: 40%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 900px) {
  .footer__contactInfo {
    padding: 50px 10px;
  }
}
.footer__h2 {
  font-size: 34px;
  font-weight: 800;
  color: white;
  text-align: center;
  line-height: 1.2em;
}
@media only screen and (max-width: 900px) {
  .footer__h2 {
    font-size: 24px;
  }
}
.footer__p {
  color: white;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3em;
  margin: 10px 0 0 0;
  text-align: center;
}
@media only screen and (max-width: 900px) {
  .footer__p {
    font-size: 16px;
  }
}
.footer__infoRow {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 150px;
  margin: 60px 0;
}
@media only screen and (max-width: 700px) {
  .footer__infoRow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin: 30px 0 40px 0;
  }
}
.footer__infoElement {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  outline: none;
  text-decoration: none;
  color: white;
}
.footer__infoElement img {
  width: 70px;
  margin: 0 0 20px 0;
}
@media only screen and (max-width: 700px) {
  .footer__infoElement img {
    width: 50px;
    margin: 0 0 10px 0;
  }
}
.footer__infoLink {
  color: white;
  font-size: 28px;
  line-height: 1em;
  outline: none;
  text-decoration: none;
  font-weight: 800;
  transition: 0.4s;
}
.footer__contactInfo ::selection {
  background: rgba(255, 255, 255, 0.3);
  color: white;
}
.footer__infoLink:hover {
  transition: 0.4s;
  cursor: pointer;
  opacity: 0.6;
}
@media only screen and (max-width: 700px) {
  .footer__infoLink {
    font-size: 24px;
  }
}
.footer__infoSubtitle {
  color: white;
  font-size: 20px;
  font-weight: 400;
  line-height: 1em;
}
.footer__button {
  padding: 14px 50px;
  border: 2px solid white;
  text-align: center;
  color: white;
  font-size: 24px;
  font-weight: 600;
  outline: none;
  text-decoration: none;
  background: transparent;
  transition: all 0.4s ease;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.footer__button:hover {
  background: white;
  color: #800000;
  cursor: pointer;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 700px) {
  .footer__button {
    font-size: 18px;
  }
}
.footer__button--form {
  margin: 40px 0 0 0;
}
.footer__contactFormWrapper {
  width: 100%;
  padding: 90px 20px 150px 20px;
  background: #656263;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url("../images/particle.png");
  background-position: left;
  background-size: 50%;
  background-repeat: no-repeat;
  scroll-margin-top: 120px;
}
@media only screen and (max-width: 700px) {
  .footer__contactFormWrapper {
    padding: 40px 10px 90px 10px;
  }
}
.footer__form {
  width: 100%;
  max-width: 1200px;
  margin: 55px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer__form .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 100px;
  width: 100%;
  margin: 0 0 40px 0;
}
@media only screen and (max-width: 700px) {
  .footer__form .row {
    gap: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.footer__form .wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
}
.footer__form .label {
  color: white;
  font-size: 20px;
  line-height: 1em;
  font-weight: 500;
}
@media only screen and (max-width: 700px) {
  .footer__form .label {
    font-size: 16px;
  }
}
.footer__form .input {
  width: 100%;
  background: white;
  font-size: 16px;
  color: black;
  border: none;
  outline: none;
  text-decoration: none;
  height: 50px;
  font-family: "Poppins", sans-serif;
  padding: 14px 18px;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}
.footer__form .input:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}
.footer__form .textarea {
  width: 100%;
  background: white;
  font-size: 16px;
  color: black;
  border: none;
  outline: none;
  text-decoration: none;
  padding: 14px 18px;
  height: 190px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  transition: box-shadow 0.3s ease;
}
.footer__form .textarea:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}
.footer__form-required {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 6px 0 0;
  font-style: italic;
}
.footer__form-info {
  font-size: 14px;
  color: #ffab91;
  font-weight: 500;
  margin-top: 8px;
}
.footer__form-info:empty {
  display: none;
}
.footer__form-thanks {
  display: none;
  text-align: center;
  color: #fff;
  padding: 30px 0;
}
.footer__form-thanks h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.footer__form-thanks p {
  font-size: .95rem;
  opacity: .8;
  margin-bottom: 20px;
}
.footer__menu {
  width: 100%;
  padding: 50px 10px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media only screen and (max-width: 1640px) {
  .footer__menu {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.footer__menu {
  background-image: url("../images/particle.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
}
.footer__dropDownMiddleLink {
  color: #800000;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: left;
  outline: none;
  text-decoration: none;
  gap: 5px;
  font-size: 16px;
  line-height: 1.1em;
  word-wrap: nowrap;
  text-wrap: nowrap;
}
.footer__dropDownMiddleLink i {
  font-size: 15px;
  color: #800000;
}
.footer__dropDownMiddleLink {
  transition: 0.4s;
}
.footer__dropDownMiddleLink:hover {
  transition: 0.4s;
  opacity: 0.7;
}
@media only screen and (max-width: 1150px) {
  .footer__dropDownMiddleLink {
    margin: 0 0 5px 0;
  }
}
.footer__dropDownSmallLink {
  line-height: 1.1em;
  color: black;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  text-align: left;
  margin: 0 0 0 20px;
  padding: 3px 0;
  word-wrap: nowrap;
  text-wrap: nowrap;
}
.footer__dropDownSmallLink .new {
  font-size: 12px;
  color: #006ee9;
  font-weight: 700;
}
.footer__dropDownSmallLink .new i {
  font-size: 10px;
}
.footer__dropDownSmallLink {
  transition: 0.4s;
}
.footer__dropDownSmallLink:hover {
  background: #800000;
  color: white;
  padding: 3px 10px;
}
.footer__dropDownSmallLink:hover .new {
  color: white;
}

.about {
  width: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px 10px 150px 10px;
  background-image: url("../images/particle.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  gap: 80px;
}
@media only screen and (max-width: 900px) {
  .about {
    padding: 0 10px 40px 10px;
    gap: 0;
  }
}
.about__container {
  max-width: 960px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 40px;
}
.about__container:hover .grey-photo {
  opacity: 0;
  transition: 0.6s;
}
.about__container:hover .about__arrow {
  transform: rotate(90deg);
  transition: 0.6s;
}
.about__container--bottom {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.about__container--bottom:hover .about__arrow {
  transform: rotate(-90deg) !important;
  transition: 0.6s;
}
@media only screen and (max-width: 900px) {
  .about__container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .about__container--bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-40px);
  }
}
.about__photo {
  width: 100%;
  transform: translateY(34%);
  position: relative;
}
@media only screen and (max-width: 900px) {
  .about__photo {
    transform: translateY(90px);
    width: calc(100% - 120px);
    max-width: 400px;
    margin: 0 0 0 auto;
  }
}
.about__photo--bottom {
  width: 340px;
  height: auto;
  transform: translateY(0);
}
@media only screen and (max-width: 900px) {
  .about__photo--bottom {
    margin: 0 0 0 auto;
    width: 100%;
    width: calc(100% - 120px);
    max-width: 400px;
    transform: translateY(90px);
  }
}
.about__photo img {
  width: 100%;
}
.about__photo .grey-photo {
  z-index: 5;
  transition: 0.6s;
}
.about__photo .red-photo {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.about__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  max-width: 500px;
}
@media only screen and (max-width: 900px) {
  .about__wrapper {
    max-width: 100%;
  }
}
.about__arrow {
  height: 80px;
  margin: 0 0 10px 0;
  transition: 0.6s;
}
@media only screen and (max-width: 900px) {
  .about__arrow {
    height: 70px;
  }
}
.about__title {
  font-size: 34px;
  line-height: 1.1em;
  font-weight: 800;
  color: black;
}
.about__title .red {
  font-weight: 800;
  color: #800000;
}
.about__text {
  color: black;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5em;
}
.about__list {
  width: 100%;
  list-style-image: url("../images/list-dot.png");
  list-style-position: outside;
  padding: 0 0 0 24px;
}
.about__li {
  font-size: 14px;
  color: black;
  font-weight: 500;
  margin: 10px 0;
}
.about__li strong {
  font-weight: 800;
}
.about__bigBtn {
  color: white;
  background: #800000;
  outline: none;
  text-decoration: none;
  font-size: 20px;
  border: 2px solid #800000;
  padding: 14px 50px;
  font-weight: 700;
  transition: all 0.4s ease;
  text-align: center;
  border-radius: 50px;
  box-shadow: 0 4px 25px rgba(128, 0, 0, 0.3);
  letter-spacing: 0.5px;
}
.about__bigBtn:hover {
  background: transparent;
  color: #800000;
  cursor: pointer;
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(128, 0, 0, 0.4);
}
@media only screen and (max-width: 700px) {
  .about__bigBtn {
    font-size: 16px;
    padding: 12px 35px;
  }
}
.about__bigBtn--google {
  background: white;
  color: #333;
  border-color: #ddd;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.about__bigBtn--google img {
  height: 22px;
  width: auto;
}
.about__bigBtn--google:hover {
  background: #f5f5f5;
  color: #333;
  border-color: #ccc;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}
.opinions__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.trusted {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: white;
  margin: 50px 0 0 0;
}
.trusted__h2 {
  color: #800000;
  font-size: 34px;
  font-weight: 700;
}
@media only screen and (max-width: 1250px) {
  .trusted__h2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 700px) {
  .trusted__h2 {
    font-size: 22px;
  }
}
.trusted__google {
  border: 2px solid #e4e4e4;
  background: #f5f5f5;
  border-radius: 16px;
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  outline: none;
  padding: 18px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trusted__google:hover {
  background: white;
  cursor: pointer;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1250px) {
  .trusted__google {
    width: calc(100% - 20px);
    margin: 0 10px;
  }
}
@media only screen and (max-width: 700px) {
  .trusted__google {
    flex-wrap: wrap;
    padding: 10px 10px;
  }
}
.trusted__google .rate {
  font-size: 20px;
  font-weight: 800;
  color: black;
}
@media only screen and (max-width: 700px) {
  .trusted__google .rate {
    font-size: 16px;
  }
}
.trusted__google .text {
  font-size: 20px;
  font-weight: 500;
  color: black;
}
@media only screen and (max-width: 700px) {
  .trusted__google .text {
    font-size: 14px;
  }
}
.trusted__google .image {
  height: 30px;
  width: auto;
}
@media only screen and (max-width: 700px) {
  .trusted__google .image {
    height: 25px;
  }
}
.trusted__google .stars {
  font-size: 18px;
  color: #edc82b;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.trusted__swiper {
  width: 100% !important;
  max-width: 1300px !important;
  margin: 40px 0;
}
@media only screen and (max-width: 1200px) {
  .trusted__swiper {
    margin: 20px 0;
  }
}
.trusted__swiper .swiper-slide {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  display: flex !important;
  width: fit-content !important;
  max-width: fit-content !important;
}
.trusted__swiper .swiper-slide img {
  height: 90px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.4s ease, opacity 0.4s ease;
}
.trusted__swiper .swiper-slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
@media only screen and (max-width: 1200px) {
  .trusted__swiper .swiper-slide img {
    height: 70px;
  }
}
@media only screen and (max-width: 600px) {
  .trusted {
    gap: 20px;
    margin: 30px 0 0 0;
  }
  .trusted__swiper {
    margin: 10px 0;
  }
  .trusted__swiper .swiper-slide img {
    height: 50px;
  }
}
.trusted__more {
  text-align: center;
  font-size: 16px;
  color: #888;
  font-style: italic;
  margin: 10px 0 0 0;
  letter-spacing: 0.5px;
}

.opinions {
  width: 100%;
  background: #dedede;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 130px 0 50px 0;
}
@media only screen and (max-width: 1250px) {
  .opinions {
    padding: 70px 0 40px 0;
  }
}
@media only screen and (max-width: 700px) {
  .opinions {
    padding: 50px 0 30px 0;
  }
}
.opinions__h2 {
  text-align: center;
  font-size: 34px;
  font-weight: 400;
  color: #800000;
}
.opinions__h2 strong {
  font-weight: 800;
}
@media only screen and (max-width: 1250px) {
  .opinions__h2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 700px) {
  .opinions__h2 {
    padding: 0 10px;
    font-size: 22px;
    margin: 0 0 20px 0;
  }
}
.opinions__container {
  width: 100%;
  position: relative;
  padding: 30px 10px !important;
  display: flex;
  flex-direction: row;
  align-items: safe center;
  justify-content: safe center;
  margin: 0 0 20px 0;
  overflow: hidden;
}
@media only screen and (max-width: 600px) {
  .opinions__container {
    padding: 20px 0 !important;
  }
}
.opinions__background {
  width: 100%;
  height: 200px;
  background: #800000;
  position: absolute;
}
.opinions__swiper {
  width: 100% !important;
  max-width: 1300px !important;
  margin: 0 !important;
}
.opinions__opinion {
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: flex !important;
  z-index: 3;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.14);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.opinions__opinion:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.opinions__stars {
  color: #edc82b;
  font-size: 18px;
  gap: 1px;
  text-align: center;
}
.opinions__rate {
  color: black;
  font-size: 17px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 0 5px;
}
.opinions__name {
  color: black;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3em;
  margin: 10px 0 0px 0;
  text-align: center;
  letter-spacing: 0.3px;
}
.opinions__person {
  color: black;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2em;
  margin: 15px 0 0 0;
  text-align: center;
}
.opinions__company {
  color: #888;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2em;
  margin: 3px 0 0 0;
  text-align: center;
}
.opinions__date {
  color: black;
  font-size: 15px;
  font-weight: 400;
  line-height: 1em;
  margin: 10px 0 0 0;
  text-align: center;
  text-transform: uppercase;
}
.opinions__text {
  margin: 10px 0 0 0;
  font-size: 16px;
  font-weight: 400;
  color: black;
  text-align: center;
  transition: 0.4s;
}
.opinions__text--hidden {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  white-space: normal;
}
.opinions__showMore {
  color: rgba(0, 0, 0, 0.384);
  font-size: 15px;
  font-weight: 600;
  border: none;
  outline: none;
  border: none;
  font-family: "Poppins", sans-serif;
  background: none;
  cursor: pointer;
}
.opinions__nextBtn {
  background: none;
  outline: none;
  text-decoration: none;
  color: rgb(255, 255, 255);
  z-index: 2;
  font-size: 70px;
  margin: 0 0 0 30px;
  cursor: pointer;
}
@media only screen and (max-width: 1250px) {
  .opinions__nextBtn {
    font-size: 40px;
    margin: 0 10px;
  }
}
@media only screen and (max-width: 600px) {
  .opinions__nextBtn {
    font-size: 34px;
  }
}
.opinions__prevBtn {
  background: none;
  outline: none;
  text-decoration: none;
  color: rgb(255, 255, 255);
  z-index: 2;
  font-size: 70px;
  margin: 0 30px 0 0;
  cursor: pointer;
}
@media only screen and (max-width: 1250px) {
  .opinions__prevBtn {
    font-size: 40px;
    margin: 0 10px;
  }
}
@media only screen and (max-width: 600px) {
  .opinions__prevBtn {
    font-size: 34px;
  }
}

/* ====== OPINIONS PLAY/PAUSE INDICATOR ====== */
.opinions__playback {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  z-index: 20;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.opinions__playback i {
  color: white;
  font-size: 20px;
  margin-left: 2px;
}
.opinions__playback--visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ====== PILLARS — "Dlaczego warto nas wybrać" ====== */
.about__pillars {
  max-width: 1100px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 60px 20px 60px;
  position: relative;
  z-index: 2;
}
.about__pillars .about__bigBtn {
  margin-top: 50px;
  display: inline-block;
}
.about__pillarsH2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 40px;
  line-height: 1.2;
}
.about__pillarsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-bottom: 10px;
}
.about__pillar {
  background: #fff;
  border-radius: 16px;
  padding: 35px 22px 30px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.about__pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #800000, #c00000);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.about__pillar:hover::before {
  transform: scaleX(1);
}
.about__pillar:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(128, 0, 0, 0.15);
}
.about__pillarIcon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #800000, #a00000);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(128, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about__pillar:hover .about__pillarIcon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(128, 0, 0, 0.4);
}
.about__pillarTitle {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  margin: 0 0 14px;
  line-height: 1.3;
}
.about__pillarDesc {
  font-size: 18px;
  color: #222;
  line-height: 1.65;
  margin: 0;
  font-weight: 500;
}
.about__pillarBtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  color: #800000;
  border: 1.5px solid rgba(128, 0, 0, 0.25);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.about__pillarBtn:hover {
  background: #800000;
  color: white;
  border-color: #800000;
}
.about__pillarBtn i { font-size: 11px; transition: transform 0.3s ease; }
.about__pillarBtn:hover i { transform: translateX(3px); }
@media only screen and (max-width: 900px) {
  .about__pillarsGrid { grid-template-columns: repeat(2, 1fr); }
  .about__pillarsH2 { font-size: 28px; }
}
@media only screen and (max-width: 500px) {
  .about__pillarsGrid { grid-template-columns: 1fr; gap: 16px; }
  .about__pillarsH2 { font-size: 24px; margin-bottom: 30px; }
  .about__pillar { padding: 28px 18px 24px; }
}

.main {
  width: calc(100% - 40px);
  margin: 14px auto 0 auto;
  padding: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  min-height: 200px;
}
@media only screen and (max-width: 1200px) {
  .main {
    width: calc(100% - 20px);
    margin: 14px auto 0 auto;
    border-radius: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .main {
    width: calc(100% - 10px);
    margin: 9px auto 0 auto;
  }
}
.main__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  position: absolute;
  top: 0;
}
.main__hero {
  width: 100%;
  background: rgba(255, 255, 255, 0.219);
  padding: 30px 20px 30px 20px;
  position: relative;
  min-height: 400px;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1200px) {
  .main__hero {
    padding: 20px 10px 20px 10px;
    border-radius: 30px;
    min-height: 250px;
  }
}
@media only screen and (max-width: 600px) {
  .main__hero {
    min-height: 200px;
  }
}
.main__form {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 2px solid #800000;
  padding: 8px 15px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: box-shadow 0.3s ease;
  max-width: 1000px;
  width: 100%;
}
.main__form:focus-within {
  box-shadow: 0 6px 30px rgba(128, 0, 0, 0.15);
}
@media only screen and (max-width: 600px) {
  .main__form {
    border-radius: 30px;
  }
}
.main__input {
  width: 100%;
  border-right: 2px solid #800000;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: black;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  padding: 12px 10px;
  background: none;
  outline: none;
}
@media only screen and (max-width: 1200px) {
  .main__input {
    font-size: 18px;
    padding: 6px 10px;
  }
}
@media only screen and (max-width: 600px) {
  .main__input {
    font-size: 15px;
    padding: 5px 8px;
  }
}
.main__submit {
  width: 60px;
  background: none;
  text-decoration: none;
  outline: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #800000;
  font-size: 30px;
  transition: 0.4s;
}
.main__submit:hover {
  cursor: pointer;
  opacity: 0.5;
  transition: 0.4s;
}
@media only screen and (max-width: 1200px) {
  .main__submit {
    width: 40px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .main__submit {
    width: 30px;
    font-size: 16px;
    padding: 5px 0 5px 10px;
  }
}

/* ====== AUTOCOMPLETE DROPDOWN ====== */
.main__autocomplete {
  position: absolute;
  background: white;
  border: 2px solid rgba(128, 0, 0, 0.15);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  z-index: 10001;
  max-height: 400px;
  overflow-y: auto;
}
.main__autocompleteItem {
  display: block;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.2s;
}
.main__autocompleteItem:last-child {
  border-bottom: none;
}
.main__autocompleteItem:hover {
  background: rgba(128, 0, 0, 0.05);
  color: #800000;
}
.main__autocompleteItem mark {
  background: rgba(128, 0, 0, 0.12);
  color: #800000;
  font-weight: 700;
  border-radius: 2px;
  padding: 0 2px;
}
.main__autocompleteSource {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #999;
  font-style: italic;
  margin-top: 2px;
}
@media only screen and (max-width: 600px) {
  .main__autocompleteItem {
    font-size: 14px;
    padding: 10px 14px;
  }
}

.cards {
  width: calc(100% - 40px);
  margin: 20px auto 0 auto;
  padding: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  .cards {
    width: calc(100% - 20px);
    border-radius: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .cards {
    width: calc(100% - 10px);
  }
}
.cards__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  position: absolute;
  top: 0;
}
@media only screen and (max-width: 600px) {
  .cards__video {
    height: 700px;
  }
}
.cards__container {
  width: 100%;
  padding: 80px 10px 80px 10px;
  position: relative;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgb(255, 255, 255) 52%, rgba(255, 255, 255, 0) 100%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media only screen and (max-width: 1200px) {
  .cards__container {
    padding: 50px 10px 50px 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    grid-gap: 10px;
  }
}
@media only screen and (max-width: 600px) {
  .cards__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
  }
}
.cards__element {
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 520px;
  width: 300px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media only screen and (max-width: 1200px) {
  .cards__element {
    width: 100%;
    height: 440px;
  }
}
@media only screen and (max-width: 600px) {
  .cards__element {
    height: 400px;
  }
}
.cards__element--katalog {
  background-image: url("../images/cards/katalog_szkolen-2.jpg");
  border-radius: 40px 0 0 0;
  overflow: hidden;
}
@media only screen and (max-width: 600px) {
  .cards__element--katalog {
    border-radius: 40px 40px 0 0;
  }
}
.cards__element--terminy {
  background-image: url("../images/cards/terminy_gwarantowane_2.jpg");
}
@media only screen and (max-width: 1200px) {
  .cards__element--terminy {
    border-radius: 0 40px 0 0;
    overflow: hidden;
  }
}
@media only screen and (max-width: 600px) {
  .cards__element--terminy {
    border-radius: 0;
  }
}
.cards__element--nowe {
  background-image: url("../images/cards/nowe_szkolenia_2.jpg");
}
@media only screen and (max-width: 1200px) {
  .cards__element--nowe {
    border-radius: 0 0 0 40px;
    overflow: hidden;
  }
}
@media only screen and (max-width: 600px) {
  .cards__element--nowe {
    border-radius: 0;
  }
}
.cards__element--kontakt {
  background-image: url("../images/cards/kontakt-2.jpg");
  border-radius: 0 40px 0 0;
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  .cards__element--kontakt {
    border-radius: 0 0 40px 0;
    overflow: hidden;
  }
}
@media only screen and (max-width: 600px) {
  .cards__element--kontakt {
    border-radius: 0 0 40px 40px;
  }
}
.cards__element {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cards__element:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  z-index: 2;
}
.cards__element:hover .cards__wrapper {
  transition: 0.4s;
  background: rgba(252, 8, 16, 0);
}
.cards__element:hover .cards__title {
  transition: 0.4s;
  color: black;
}
.cards__element:hover .cards__text {
  transition: 0.4s;
  color: black;
}
.cards__element:hover .cards__button {
  background: black;
  transition: 0.4s;
  color: white;
}
.cards__wrapper {
  width: 100%;
  height: 100%;
  background: rgba(128, 0, 0, 0.6705882353);
  padding: 70px 20px 90px 15px;
  transition: 0.4s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}
@media only screen and (max-width: 1200px) {
  .cards__wrapper {
    padding: 40px 10px 50px 15px;
  }
}
.cards__title {
  outline: none;
  text-decoration: none;
  color: white;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2em;
  letter-spacing: 0.5px;
  transition: 0.4s;
  cursor: pointer;
}
@media only screen and (max-width: 1200px) {
  .cards__title {
    font-size: 28px;
  }
}
.cards__text {
  color: white;
  font-size: 14px;
  font-weight: 400;
  transition: 0.4s;
}
.cards__button {
  border: none;
  background: white;
  color: #800000;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  outline: none;
  padding: 12px 35px;
  line-height: 1em;
  margin: auto 0 0 0;
  transition: all 0.4s ease;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 50px;
  letter-spacing: 0.3px;
}
.cards__button:hover {
  border: 2px solid black !important;
  color: black !important;
  background: transparent !important;
  transform: translateY(-2px);
}

.hero {
  width: calc(100% - 40px);
  margin: 58px auto 0 auto;
  padding: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  min-height: 90vh;
}
@media only screen and (max-width: 1200px) {
  .hero {
    width: calc(100% - 20px);
    margin: 53px auto 0 auto;
    border-radius: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .hero {
    width: calc(100% - 10px);
    margin: 50px auto 0 auto;
    min-height: 75vh;
  }
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  position: absolute;
  top: 0;
}
.hero__container {
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(255, 255, 255, 0.15) 100%);
  padding: 110px 20px 80px 20px;
  position: relative;
  min-height: 90vh;
  transition: height 0.3s ease;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1200px) {
  .hero__container {
    padding: 20px 10px 20px 10px;
    border-radius: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .hero__container {
    min-height: 75vh;
    padding: 60px 10px 20px 10px;
  }
  .hero__slider {
    overflow: hidden;
  }
  /* Prevent off-screen swiper slides from intercepting touch events */
  .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next):not(.swiper-slide-prev) {
    pointer-events: none;
  }
}
.hero__bigBtn {
  color: white;
  background: #800000;
  outline: none;
  text-decoration: none;
  font-size: 20px;
  border: 2px solid #800000;
  padding: 14px 50px;
  font-weight: 700;
  transition: all 0.4s ease;
  text-align: center;
  border-radius: 50px;
  box-shadow: 0 4px 25px rgba(128, 0, 0, 0.4);
  letter-spacing: 0.5px;
}
.hero__bigBtn:hover {
  background: transparent;
  color: #800000;
  cursor: pointer;
  box-shadow: 0 8px 35px rgba(128, 0, 0, 0.5);
  transform: translateY(-3px);
}
@media only screen and (max-width: 700px) {
  .hero__bigBtn {
    font-size: 16px;
    padding: 12px 35px;
  }
}
.hero__title {
  color: #800000;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 700px) {
  .hero__title {
    font-size: 28px;
  }
}
.hero__slider {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 30px auto 40px auto;
  overflow: visible;
  position: relative;
}
.hero__slider .hero-swiper {
  width: 100%;
  overflow: hidden;
}
.hero__slider .hero-swiper .swiper-wrapper {
  transition-property: transform, height;
}
.hero__slider .hero__playback-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  z-index: 20;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.hero__slider .hero__playback-indicator i {
  color: white;
  font-size: 20px;
  margin-left: 2px;
}
.hero__slider .hero__playback-indicator--visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.hero__slider .swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  margin: 12px auto 0 auto;
  max-width: 90%;
  min-height: 48px;
}
@media only screen and (max-width: 1200px) {
  .hero__slider .swiper-pagination {
    display: none !important;
  }
}
.hero__slider .swiper-pagination-bullet-active {
  background-color: #800000;
}
.hero__slider .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  border: 2px solid #800000;
  border-radius: 10px;
  background: white;
  overflow: hidden;
}
.hero__slider .swiper-slide .hero-slide-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 1;
  transition: 0.4s;
}
.hero__slider .swiper-slide .hero-slide-link:hover {
  transition: 0.4s;
  cursor: pointer;
  opacity: 0.9;
}
.hero__slider .swiper-slide .hero-slide-link {
  outline: none;
  text-decoration: none;
  color: black;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  text-align: center;
  line-height: 1.4em;
}
.hero__slider .swiper-slide .hero-slide-link *:not([class*=fa-]) {
  font-family: "Poppins", sans-serif !important;
}
.hero__slider .swiper-slide .hero-slide-link:not(.hero-slide-guaranteed-count) *:not([class*=fa-]) {
  font-size: inherit !important;
}
.hero__slider .swiper-slide .hero-slide-link ul li {
  text-align: left;
}
.hero__slider .swiper-slide .hero-slide-link--text {
  padding: 0 10px;
}
@media only screen and (max-width: 600px) {
  .hero__slider .swiper-slide .hero-slide-link--text {
    padding: 10px;
  }
}
.hero__slider .swiper-slide > .hero-slide-link > img {
  display: block;
  width: 100%;
  height: auto;
}
.hero__slider .swiper-slide.swiper-slide--guaranteed {
  border: none;
  background: linear-gradient(145deg, #5a0000 0%, #800000 40%, #a80000 70%, #c41010 100%);
}
.hero__slider .swiper-slide .gt-slide {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 1;
  text-decoration: none;
  color: white;
  padding: 45px 40px;
  gap: 40px;
  transition: 0.3s;
}
.hero__slider .swiper-slide .gt-slide:hover {
  opacity: 0.95;
}
.hero__slider .swiper-slide .gt-slide__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  min-width: 0;
}
.hero__slider .swiper-slide .gt-slide__badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 18px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 28px 0;
}
.hero__slider .swiper-slide .gt-slide__badge i {
  color: #4caf50;
  font-size: 17px;
}
.hero__slider .swiper-slide .gt-slide__title {
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin: 0 0 22px 0;
  line-height: 1.3;
  text-align: left;
}
.hero__slider .swiper-slide .gt-slide__info {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 32px;
  margin: 0 0 24px 0;
}
.hero__slider .swiper-slide .gt-slide__info-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.hero__slider .swiper-slide .gt-slide__info-item > i {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.6);
}
.hero__slider .swiper-slide .gt-slide__info-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2px;
}
.hero__slider .swiper-slide .gt-slide__info-value {
  font-size: 20px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}
.hero__slider .swiper-slide .gt-slide__info-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero__slider .swiper-slide .gt-slide__desc {
  font-size: 16px !important;
  font-weight: 400 !important;
  font-family: "Poppins", sans-serif !important;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.6 !important;
  margin: 0 0 26px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  text-align: left;
}
.hero__slider .swiper-slide .gt-slide__desc * {
  font-size: inherit !important;
  font-weight: inherit !important;
  font-family: inherit !important;
  color: inherit !important;
  line-height: inherit !important;
  margin: 0 !important;
  padding: 0 !important;
}
.hero__slider .swiper-slide .gt-slide__cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: white;
  color: #800000;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.hero__slider .swiper-slide .gt-slide__cta i {
  transition: transform 0.3s;
}
.hero__slider .swiper-slide .gt-slide__cta:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}
.hero__slider .swiper-slide .gt-slide__cta:hover i {
  transform: translateX(4px);
}
.hero__slider .swiper-slide .gt-slide__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  min-width: 200px;
}
.hero__slider .swiper-slide .gt-slide__img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}
@media only screen and (max-width: 600px) {
  .hero__slider .swiper-slide .gt-slide {
    flex-direction: column;
    padding: 25px 20px;
    gap: 20px;
  }
  .hero__slider .swiper-slide .gt-slide__right {
    width: 100%;
    min-width: 0;
  }
  .hero__slider .swiper-slide .gt-slide__img {
    max-height: 120px;
  }
  .hero__slider .swiper-slide .gt-slide__title {
    font-size: 19px;
  }
  .hero__slider .swiper-slide .gt-slide__date {
    font-size: 22px;
  }
  .hero__slider .swiper-slide .gt-slide__date i {
    font-size: 18px;
  }
  .hero__slider .swiper-slide .gt-slide__desc {
    font-size: 13px;
  }
  .hero__slider .swiper-slide .gt-slide__cta {
    font-size: 14px;
    padding: 9px 22px;
  }
}
.hero__slider .swiper-slide .hero-slide-guaranteed-count {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: linear-gradient(145deg, #5a0000 0%, #800000 30%, #a80000 60%, #c41010 100%);
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  flex: 1;
}
.hero__slider .swiper-slide .hero-slide-guaranteed-count__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 35px 30px 30px 30px;
  width: 100%;
  background: radial-gradient(ellipse at top, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}
@media only screen and (max-width: 600px) {
  .hero__slider .swiper-slide .hero-slide-guaranteed-count__top {
    padding: 25px 15px 20px 15px;
  }
}
.hero__slider .swiper-slide .hero-slide-guaranteed-count__number {
  font-size: 130px;
  font-weight: 900;
  color: white;
  line-height: 1;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35), 0 0 80px rgba(255, 255, 255, 0.1);
  letter-spacing: -2px;
  background-size: 200% 100%;
  background-position: 100% 0;
}
.hero__slider .swiper-slide .hero-slide-guaranteed-count__number--shimmer {
  background: linear-gradient(120deg, white 0%, white 35%, #cc4444 50%, white 65%, white 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 1.5s ease forwards;
}
@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
.hero__slider .swiper-slide .hero-slide-guaranteed-count__number--shadow {
  transition: text-shadow 0.8s ease;
  text-shadow: 6px 6px 25px rgba(0, 0, 0, 0.5), 3px 3px 10px rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 600px) {
  .hero__slider .swiper-slide .hero-slide-guaranteed-count__number {
    font-size: 85px;
  }
}
.hero__slider .swiper-slide .hero-slide-guaranteed-count__label {
  font-size: 26px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin: 8px 0 15px 0;
  text-align: center;
  letter-spacing: 0.3px;
}
@media only screen and (max-width: 600px) {
  .hero__slider .swiper-slide .hero-slide-guaranteed-count__label {
    font-size: 19px;
  }
}
.hero__slider .swiper-slide .hero-slide-guaranteed-count__text {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  max-width: 520px;
  line-height: 1.5;
  margin: 0;
}
@media only screen and (max-width: 600px) {
  .hero__slider .swiper-slide .hero-slide-guaranteed-count__text {
    font-size: 14px;
  }
}
.hero__slider .swiper-slide .hero-slide-guaranteed-count__features {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero__slider .swiper-slide .hero-slide-guaranteed-count__feature {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
  padding: 16px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s;
}
.hero__slider .swiper-slide .hero-slide-guaranteed-count__feature:hover {
  background: rgba(255, 255, 255, 0.05);
}
.hero__slider .swiper-slide .hero-slide-guaranteed-count__feature:last-child {
  border-bottom: none;
}
@media only screen and (max-width: 600px) {
  .hero__slider .swiper-slide .hero-slide-guaranteed-count__feature {
    padding: 12px 15px;
    gap: 12px;
  }
}
.hero__slider .swiper-slide .hero-slide-guaranteed-count__icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(46, 125, 50, 0.25);
  border: 1px solid rgba(46, 125, 50, 0.4);
  color: #4caf50;
  font-size: 20px;
}
@media only screen and (max-width: 600px) {
  .hero__slider .swiper-slide .hero-slide-guaranteed-count__icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    font-size: 17px;
    border-radius: 10px;
  }
}
.hero__slider .swiper-slide .hero-slide-guaranteed-count__feature-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3px;
}
.hero__slider .swiper-slide .hero-slide-guaranteed-count__feature-text strong {
  font-size: 17px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.2px;
}
.hero__slider .swiper-slide .hero-slide-guaranteed-count__feature-text span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}
@media only screen and (max-width: 600px) {
  .hero__slider .swiper-slide .hero-slide-guaranteed-count__feature-text strong {
    font-size: 15px;
  }
  .hero__slider .swiper-slide .hero-slide-guaranteed-count__feature-text span {
    font-size: 12px;
  }
}
.hero__slider .swiper-slide .hero-slide-guaranteed-count__btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: white;
  color: #800000;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
  margin: 20px 0 25px 0;
  letter-spacing: 0.3px;
}
.hero__slider .swiper-slide .hero-slide-guaranteed-count__btn i {
  transition: transform 0.3s;
}
.hero__slider .swiper-slide .hero-slide-guaranteed-count__btn:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}
.hero__slider .swiper-slide .hero-slide-guaranteed-count__btn:hover i {
  transform: translateX(4px);
}
@media only screen and (max-width: 600px) {
  .hero__slider .swiper-slide .hero-slide-guaranteed-count__btn {
    font-size: 14px;
    padding: 12px 28px;
    margin: 15px 0 20px 0;
  }
}
.hero__slider .hero-button-prev,
.hero__slider .hero-button-next {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #800000;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(5px);
  transition: 0.3s;
  z-index: 10;
}
.hero__slider .hero-button-prev:hover,
.hero__slider .hero-button-next:hover {
  background: #800000;
  color: white;
  box-shadow: 0 6px 25px rgba(128, 0, 0, 0.3);
  transform: translateY(-50%) scale(1.1);
  cursor: pointer;
}
@media only screen and (max-width: 1000px) {
  .hero__slider .hero-button-prev,
  .hero__slider .hero-button-next {
    display: none;
  }
}
.hero__slider .hero-button-prev {
  left: -70px;
}
@media only screen and (max-width: 1200px) {
  .hero__slider .hero-button-prev {
    left: -55px;
  }
}
.hero__slider .hero-button-next {
  right: -70px;
}
@media only screen and (max-width: 1200px) {
  .hero__slider .hero-button-next {
    right: -55px;
  }
}

html:has(.panel-header),
html:has(.panel-header) body {
  zoom: 1;
}

.panel-header {
  width: 100%;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  background: #1d2327;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
}
.panel-header__user {
  outline: none;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  margin: 0 0 0 auto;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  transition: 0.3s;
}
.panel-header__user i {
  font-size: 13px;
}
.panel-header__user:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  cursor: pointer;
}
.panel-header__left {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.panel-header__link {
  outline: none;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: 0.3s;
}
.panel-header__link i {
  font-size: 12px;
}
.panel-header__link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.panel-main {
  width: 100%;
  height: calc(100vh - 48px);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.panel-main__nav {
  width: 220px;
  min-width: 220px;
  background: #23282d;
  height: calc(100vh - 48px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2px;
  padding: 16px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.panel-main__nav-label {
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 20px 8px;
}
.panel-main__link {
  padding: 10px 20px;
  border-left: 3px solid transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 10px;
  width: 100%;
  outline: none;
  text-decoration: none;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
  transition: 0.2s;
}
.panel-main__link i {
  font-size: 14px;
  width: 18px;
  text-align: center;
}
.panel-main__link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.06);
  border-left-color: #ed1c24;
}
.panel-main__link--active {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-left-color: #ed1c24;
  font-weight: 500;
}
.panel-main__container {
  width: 100%;
  background: #f0f2f5;
  display: block;
  padding: 24px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.login {
  width: 100%;
  min-height: 100vh;
  padding: 30px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1d2327 0%, #2c3338 50%, #800000 100%);
}
.login__container {
  width: 100%;
  max-width: 400px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.login__container img {
  height: 50px;
}
.login__h1 {
  color: #222;
  font-size: 22px;
  font-weight: 700;
  margin: 20px 0 24px 0;
}
.login__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.login__form p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  gap: 6px;
}
.login__form label {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.login__form input {
  width: 100%;
  outline: none;
  text-decoration: none;
  border: 1px solid #ddd;
  background: #f8f8f8;
  border-radius: 8px;
  font-size: 15px;
  color: #222;
  font-weight: 400;
  padding: 10px 14px;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.2s;
}
.login__form input:focus {
  border-color: #800000;
  background: white;
}
.login__submit {
  width: 100%;
  background: #800000;
  padding: 12px 16px;
  font-size: 16px;
  color: white;
  border: none;
  outline: none;
  font-weight: 700;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
  cursor: pointer;
}
.login__submit:hover {
  background: rgb(87.2, 0, 0);
  box-shadow: 0 4px 12px rgba(128, 0, 0, 0.3);
}
.login .messages {
  width: 100%;
  margin: 0 0 10px 0;
  padding: 10px 14px;
  background: #fff3f3;
  border: 1px solid #ffcdd2;
  border-radius: 8px;
  color: #c62828;
  font-size: 14px;
  list-style: none;
}

.panel-dashboard__welcome {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin: 0 0 8px 0;
}
.panel-dashboard__subtitle {
  font-size: 15px;
  color: #888;
  margin: 0 0 32px 0;
}
.panel-dashboard__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.panel-dashboard__card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
  text-decoration: none;
  color: #222;
  transition: 0.3s;
}
.panel-dashboard__card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.panel-dashboard__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  margin: 0 0 16px 0;
}
.panel-dashboard__card-icon--slides {
  background: #800000;
}
.panel-dashboard__card-icon--categories {
  background: #006ee9;
}
.panel-dashboard__card-icon--site {
  background: #2f7d32;
}
.panel-dashboard__card-icon--analytics {
  background: #7b1fa2;
}
.panel-dashboard__card-title {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 6px 0;
}
.panel-dashboard__card-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.4;
}

.pagination {
  margin: 16px auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 10px;
  gap: 4px;
}
.pagination__button {
  border: 1px solid #ddd;
  background: white;
  color: #555;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 1em;
  outline: none;
  transition: 0.2s;
}
.pagination__button:hover {
  background: #800000;
  color: white;
  border-color: #800000;
  cursor: pointer;
}
.pagination__button--active {
  background: #800000;
  color: white;
  border-color: #800000;
}
.pagination__button--active:hover {
  background: #4d0000;
}

.search-container {
  width: 100%;
  padding: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.search-container__h1 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin: 0 0 16px 0;
}
.search-container__input {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 15px;
  color: #222;
  font-weight: 400;
  outline: none;
  background: white;
  margin: 0 0 12px 0;
  width: 100%;
  font-family: "Poppins", sans-serif;
  max-width: 500px;
  transition: border-color 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.search-container__input:focus {
  border-color: #800000;
  box-shadow: 0 0 0 3px rgba(128, 0, 0, 0.08);
}
.search-container__searchButtonsWrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 8px 0;
}
.search-container__button {
  border: none;
  color: white;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 1em;
  text-decoration: none;
  outline: none;
  transition: 0.2s;
  cursor: pointer;
  background: #800000;
}
.search-container__button:hover {
  opacity: 0.85;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.search-container__button--green {
  background: #28a745;
}
.search-container__button--orange {
  background: #e67e22;
}

.panel-form {
  width: 100%;
  max-width: 800px;
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
}
.panel-form__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 28px 0;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
  gap: 10px;
}
.panel-form__h1 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
}
.panel-form__back {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #555;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.2s;
  background: white;
}
.panel-form__back:hover {
  background: #f5f5f5;
  border-color: #bbb;
}
.panel-form__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
}
.panel-form__field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6px;
  width: 100%;
}
.panel-form__field input,
.panel-form__field select,
.panel-form__field textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  color: #222;
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: 0.2s;
}
.panel-form__field input:focus,
.panel-form__field select:focus,
.panel-form__field textarea:focus {
  border-color: #800000;
  background: white;
  box-shadow: 0 0 0 3px rgba(128, 0, 0, 0.06);
}
.panel-form__field textarea {
  min-height: 200px;
  resize: vertical;
}
.panel-form__field--half {
  flex: 1;
  min-width: 150px;
}
.panel-form__label {
  font-size: 12px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.panel-form__row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
  flex-wrap: wrap;
}
.panel-form__submit {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: white;
  background: #800000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
  margin: 8px 0 0 0;
}
.panel-form__submit:hover {
  background: rgb(87.2, 0, 0);
  box-shadow: 0 4px 12px rgba(128, 0, 0, 0.2);
}

.panel-details {
  width: 100%;
  max-width: 900px;
}
.panel-details__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 24px 0;
  flex-wrap: wrap;
  gap: 10px;
}
.panel-details__h1 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
}
.panel-details__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.panel-details__btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #555;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.2s;
  background: white;
}
.panel-details__btn:hover {
  background: #f5f5f5;
  border-color: #bbb;
}
.panel-details__btn--edit {
  background: #800000;
  color: white;
  border-color: #800000;
}
.panel-details__btn--edit:hover {
  background: rgb(87.2, 0, 0);
}
.panel-details__btn--delete {
  background: #ed1c24;
  color: white;
  border-color: #ed1c24;
}
.panel-details__btn--delete:hover {
  background: rgb(207.7281632653, 16.4718367347, 23.7926530612);
}
.panel-details__card {
  background: white;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 0 24px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.panel-details__row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 14px 24px;
  border-bottom: 1px solid #f0f0f0;
  gap: 16px;
}
.panel-details__row:last-child {
  border-bottom: none;
}
.panel-details__row:nth-child(even) {
  background: #fafafa;
}
.panel-details__label {
  font-size: 12px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  min-width: 140px;
  flex-shrink: 0;
  padding-top: 2px;
}
.panel-details__value {
  font-size: 15px;
  font-weight: 500;
  color: #222;
  word-break: break-word;
}
.panel-details__preview {
  width: 100%;
}
.panel-details__preview-h2 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin: 0 0 12px 0;
  padding: 0 0 10px 0;
  border-bottom: 2px solid #800000;
}
.panel-details__preview-content {
  width: 100%;
  padding: 24px;
  background: white;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.table-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
  overflow: hidden;
}
.table-container__wrapper {
  width: 100%;
  overflow-x: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.table-container__tab {
  width: 100%;
  table-layout: auto;
  padding: 0;
  border-collapse: collapse;
  border-spacing: 0;
}
.table-container__tab .col-name {
  width: 30%;
  min-width: 200px;
}
.table-container__tab th {
  background: #23282d;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.table-container__tab td {
  padding: 10px 16px;
  text-align: left;
  font-size: 13px;
  color: #444;
  font-weight: 400;
  border-bottom: 1px solid #f0f0f0;
  word-break: break-all;
  overflow-wrap: break-word;
}
.table-container__tab td a {
  color: #800000;
  text-decoration: none;
  font-weight: 500;
}
.table-container__tab td a:hover {
  text-decoration: underline;
}
.table-container__tab tr:hover td {
  background: #fafafa;
}
.table-container__tab .column {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.table-container__tab .column a {
  border: none;
  color: white;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  width: auto;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 1em;
  text-decoration: none;
  outline: none;
  transition: 0.2s;
}
.table-container__tab .column a:hover {
  opacity: 0.8;
  text-decoration: none;
}
.table-container__tab .column a.orange {
  background: #ff9000;
}
.table-container__tab .column a.green {
  background: #2f7d32;
}
.table-container__tab .column a.red {
  background: #ed1c24;
}
.table-container__tab .column a:not(.orange):not(.green):not(.red) {
  background: #800000;
}

.loading {
  width: 100%;
  padding: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.karnet-hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.karnet-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0000 0%, #4a0010 35%, #800000 70%, #a52a2a 100%);
  z-index: 0;
}
.karnet-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 15% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 70%), radial-gradient(ellipse 500px 350px at 85% 20%, rgba(255, 200, 200, 0.08) 0%, transparent 70%);
}
.karnet-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.karnet-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 30px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.karnet-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 28px 0;
  backdrop-filter: blur(4px);
}
.karnet-hero__badge i {
  color: #ffcc80;
  font-size: 14px;
}
.karnet-hero__h1 {
  font-size: 62px;
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .karnet-hero__h1 {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .karnet-hero__h1 {
    font-size: 32px;
  }
}
@media (max-width: 600px) {
  .karnet-hero {
    min-height: 380px;
  }
  .karnet-hero__inner {
    padding: 40px 15px 50px;
  }
}
body:has(.karnet-hero) .main,
body:has(.karnet-rules-hero) .main {
  margin: 54px auto 0 auto;
}
@media (max-width: 1200px) {
  body:has(.karnet-hero) .main,
  body:has(.karnet-rules-hero) .main {
    margin: 49px auto 0 auto;
  }
}
@media (max-width: 600px) {
  body:has(.karnet-hero) .main,
  body:has(.karnet-rules-hero) .main {
    margin: 46px auto 0 auto;
  }
}
body:has(.karnet-rules-hero) .main__hero {
  padding-top: 80px;
}
@media (max-width: 1200px) {
  body:has(.karnet-rules-hero) .main__hero {
    padding-top: 70px;
  }
}
@media (max-width: 600px) {
  body:has(.karnet-rules-hero) .main__hero {
    padding-top: 60px;
  }
}
.karnet-hero__subtitle {
  font-size: 22px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px 0;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .karnet-hero__subtitle {
    font-size: 18px;
  }
}
.karnet-hero__divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  border-radius: 2px;
  margin: 0 0 24px 0;
}
.karnet-hero__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin: 0 0 36px 0;
  max-width: 750px;
}
@media (max-width: 768px) {
  .karnet-hero__desc {
    font-size: 15px;
  }
}
.karnet-hero__highlight {
  font-weight: 700;
  color: white;
}
.karnet-hero__buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.karnet-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
@media (max-width: 480px) {
  .karnet-hero__btn {
    padding: 14px 28px;
    font-size: 15px;
  }
}
.karnet-hero__btn--primary {
  background: white;
  color: #800000;
  border: 2px solid white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.karnet-hero__btn--primary:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
.karnet-hero__btn--secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.karnet-hero__btn--secondary:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.karnet-how {
  width: 100%;
  background: linear-gradient(160deg, #1a1414 0%, #2a1e1e 40%, #201818 100%);
  padding: 80px 30px 90px;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 140px;
}
.karnet-how::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 25%, rgba(128, 0, 0, 0.1) 0%, transparent 50%), radial-gradient(circle at 85% 75%, rgba(128, 0, 0, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.karnet-how__header {
  text-align: center;
  margin: 0 0 56px 0;
  position: relative;
  z-index: 1;
}
.karnet-how__h2 {
  font-size: 38px;
  font-weight: 800;
  color: white;
  margin: 0 0 12px 0;
}
@media (max-width: 768px) {
  .karnet-how__h2 {
    font-size: 28px;
  }
}
.karnet-how__subtitle {
  font-size: 17px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.5px;
}
.karnet-how__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 1100px) {
  .karnet-how__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 750px) {
  .karnet-how__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .karnet-how__grid {
    grid-template-columns: 1fr;
  }
}
.karnet-how__card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.karnet-how__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
  transition: height 0.3s;
}
.karnet-how__card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}
.karnet-how__card:hover::before {
  height: 4px;
}
.karnet-how__card--blue::before {
  background: #a52a2a;
}
.karnet-how__card--blue:hover {
  box-shadow: 0 12px 40px rgba(128, 0, 0, 0.3);
}
.karnet-how__card--blue .karnet-how__icon {
  background: rgba(200, 60, 60, 0.2);
  color: #d46a6a;
}
.karnet-how__card--blue .karnet-how__step {
  color: rgba(200, 80, 80, 0.5);
}
.karnet-how__card--orange::before {
  background: #aaa;
}
.karnet-how__card--orange:hover {
  box-shadow: 0 12px 40px rgba(80, 80, 80, 0.25);
}
.karnet-how__card--orange .karnet-how__icon {
  background: rgba(255, 255, 255, 0.12);
  color: #bbb;
}
.karnet-how__card--orange .karnet-how__step {
  color: rgba(255, 255, 255, 0.25);
}
.karnet-how__card--teal::before {
  background: #c05050;
}
.karnet-how__card--teal:hover {
  box-shadow: 0 12px 40px rgba(165, 42, 42, 0.25);
}
.karnet-how__card--teal .karnet-how__icon {
  background: rgba(200, 60, 60, 0.18);
  color: #d46a6a;
}
.karnet-how__card--teal .karnet-how__step {
  color: rgba(200, 80, 80, 0.45);
}
.karnet-how__card--red::before {
  background: #888;
}
.karnet-how__card--red:hover {
  box-shadow: 0 12px 40px rgba(60, 60, 60, 0.3);
}
.karnet-how__card--red .karnet-how__icon {
  background: rgba(255, 255, 255, 0.12);
  color: #bbb;
}
.karnet-how__card--red .karnet-how__step {
  color: rgba(255, 255, 255, 0.25);
}
.karnet-how__card--purple::before {
  background: #a52a2a;
}
.karnet-how__card--purple:hover {
  box-shadow: 0 12px 40px rgba(128, 0, 0, 0.3);
}
.karnet-how__card--purple .karnet-how__icon {
  background: rgba(200, 60, 60, 0.2);
  color: #d46a6a;
}
.karnet-how__card--purple .karnet-how__step {
  color: rgba(200, 80, 80, 0.5);
}
.karnet-how__step {
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: 0.4s;
}
@media (max-width: 500px) {
  .karnet-how__step {
    font-size: 48px;
  }
}
.karnet-how__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  font-size: 26px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px 0;
  transition: 0.3s;
}
.karnet-how__content {
  position: relative;
  z-index: 1;
}
.karnet-how__card-title {
  font-size: 19px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 12px 0;
  line-height: 1.3;
}
.karnet-how__card-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}
.karnet-how__highlight {
  font-weight: 800;
  color: #d46a6a;
  letter-spacing: 0.5px;
  text-decoration: underline;
  text-decoration-color: rgba(212, 106, 106, 0.4);
  text-underline-offset: 3px;
}
.karnet-how__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  text-decoration: none;
  transition: 0.3s;
}
.karnet-how__card-btn:hover {
  background: rgba(255,255,255,0.22);
}

.karnet-benefits {
  width: 100%;
  background: linear-gradient(180deg, #faf8f8 0%, #f3f0f0 100%);
  padding: 40px 30px 40px;
  position: relative;
  overflow: hidden;
}
.karnet-benefits::before, .karnet-benefits::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.karnet-benefits::before {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -120px;
  background: radial-gradient(circle, rgba(128, 0, 0, 0.05) 0%, transparent 70%);
}
.karnet-benefits::after {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(128, 0, 0, 0.04) 0%, transparent 70%);
}
.karnet-benefits__header {
  text-align: center;
  margin: 0 0 24px 0;
  position: relative;
  z-index: 1;
}
.karnet-benefits__h2 {
  font-size: 32px;
  font-weight: 800;
  color: #222;
  margin: 0 0 8px 0;
}
@media (max-width: 768px) {
  .karnet-benefits__h2 {
    font-size: 26px;
  }
}
.karnet-benefits__subtitle {
  font-size: 15px;
  font-weight: 500;
  color: #999;
  letter-spacing: 0.3px;
}
.karnet-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 18px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .karnet-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 550px) {
  .karnet-benefits__grid {
    grid-template-columns: 1fr;
  }
}
.karnet-benefits__card {
  background: linear-gradient(145deg, #ffffff 0%, #fdfbfb 100%);
  border-radius: 18px;
  padding: 28px 24px 24px;
  border: 1px solid #ece8e8;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}
.karnet-benefits__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(128, 0, 0, 0.15) 50%, transparent 100%);
  border-radius: 0 0 2px 2px;
}
.karnet-benefits__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(128, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  border-color: #e0dada;
  background: linear-gradient(145deg, #ffffff 0%, #faf6f6 100%);
}
.karnet-benefits__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(128, 0, 0, 0.07) 0%, rgba(165, 42, 42, 0.11) 100%);
  color: #a52a2a;
  font-size: 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px 0;
  transition: 0.3s;
}
.karnet-benefits__card:hover .karnet-benefits__icon-wrap {
  transform: scale(1.08);
  background: linear-gradient(135deg, rgba(128, 0, 0, 0.1) 0%, rgba(165, 42, 42, 0.15) 100%);
}
.karnet-benefits__card-title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin: 0 0 10px 0;
}
.karnet-benefits__card-text {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  font-weight: 500;
}
.karnet-benefits__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  margin-bottom: 14px;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #a52a2a;
  background: rgba(165,42,42,0.08);
  border: 1px solid rgba(165,42,42,0.2);
  text-decoration: none;
  transition: 0.3s;
}
.karnet-benefits__card-btn:hover {
  background: rgba(165,42,42,0.15);
}
.karnet-benefits__card-tag {
  display: inline-block;
  align-self: flex-start;
  margin: auto 0 0 0;
  padding-top: 16px;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #a52a2a;
  background: rgba(128, 0, 0, 0.06);
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
.karnet-benefits__card--oszczednosc::after, .karnet-benefits__card--elastycznosc::after, .karnet-benefits__card--rozwoj::after, .karnet-benefits__card--terminy::after, .karnet-benefits__card--jakosc::after, .karnet-benefits__card--firmy::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.7);
  opacity: 0.18;
  border-radius: 18px;
  pointer-events: none;
  transition: filter 0.5s ease, opacity 0.5s ease;
}
.karnet-benefits__card--oszczednosc:hover::after, .karnet-benefits__card--elastycznosc:hover::after, .karnet-benefits__card--rozwoj:hover::after, .karnet-benefits__card--terminy:hover::after, .karnet-benefits__card--jakosc:hover::after, .karnet-benefits__card--firmy:hover::after {
  filter: grayscale(0%) brightness(0.55);
  opacity: 0.35;
}
.karnet-benefits__card--oszczednosc:hover, .karnet-benefits__card--elastycznosc:hover, .karnet-benefits__card--rozwoj:hover, .karnet-benefits__card--terminy:hover, .karnet-benefits__card--jakosc:hover, .karnet-benefits__card--firmy:hover {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(253, 251, 251, 0.88) 100%);
}
.karnet-benefits__card--oszczednosc:hover .karnet-benefits__card-title, .karnet-benefits__card--oszczednosc:hover .karnet-benefits__card-text, .karnet-benefits__card--elastycznosc:hover .karnet-benefits__card-title, .karnet-benefits__card--elastycznosc:hover .karnet-benefits__card-text, .karnet-benefits__card--rozwoj:hover .karnet-benefits__card-title, .karnet-benefits__card--rozwoj:hover .karnet-benefits__card-text, .karnet-benefits__card--terminy:hover .karnet-benefits__card-title, .karnet-benefits__card--terminy:hover .karnet-benefits__card-text, .karnet-benefits__card--jakosc:hover .karnet-benefits__card-title, .karnet-benefits__card--jakosc:hover .karnet-benefits__card-text, .karnet-benefits__card--firmy:hover .karnet-benefits__card-title, .karnet-benefits__card--firmy:hover .karnet-benefits__card-text {
  color: #111;
}
.karnet-benefits__card--oszczednosc::after {
  background-image: url("../images/karnet/oszczednosc.jpg");
}
.karnet-benefits__card--elastycznosc::after {
  background-image: url("../images/karnet/elastycznosc.jpg");
}
.karnet-benefits__card--rozwoj::after {
  background-image: url("../images/karnet/rozwoj.jpg");
}
.karnet-benefits__card--terminy::after {
  background-image: url("../images/karnet/terminy.jpg");
}
.karnet-benefits__card--jakosc::after {
  background-image: url("../images/karnet/jakosc.jpg");
  transform: scaleX(-1);
}
.karnet-benefits__card--firmy::after {
  background-image: url("../images/karnet/firmy.jpg");
}
.karnet-benefits__icon-wrap, .karnet-benefits__card-title, .karnet-benefits__card-text {
  position: relative;
  z-index: 1;
}

/* ---- KARNET PRICE CARD (full wypas) ---- */
.karnet-price {
  width: 100%; padding: 80px 30px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #1a1015 0%, #2a1520 30%, #1a1015 60%, #0f0a0d 100%);
  position: relative; overflow: hidden;
}
.karnet-price::before {
  content: ""; position: absolute; inset: 0;
  background: url("../images/karnet/karnet_cennik2.jpg") center/cover no-repeat;
  filter: saturate(0.5) brightness(0.45);
  opacity: 0.8; pointer-events: none;
}

/* card shell */
.karnet-price__card {
  width: 100%; max-width: 540px;
  background: linear-gradient(145deg, #ffffff 0%, #fdf8f8 100%);
  border-radius: 28px; padding: 0 0 48px 0;
  text-align: center;
  box-shadow: 0 16px 60px rgba(128,0,0,.35), 0 4px 20px rgba(0,0,0,.2);
  position: relative; z-index: 1; overflow: hidden;
}
/* animated gradient top bar */
.karnet-price__topbar {
  height: 5px; width: 100%;
  background: linear-gradient(90deg, #800000, #cc3333, #800000, #cc3333);
  background-size: 300% 100%;
  animation: kpTopbar 4s linear infinite;
}
@keyframes kpTopbar { 0%{background-position:0 0} 100%{background-position:300% 0} }
/* subtle glow behind card */
.karnet-price__glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(128,0,0,.12) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
/* ribbon */
.karnet-price__ribbon {
  display: inline-flex; align-items: center; gap: 6px;
  margin: 28px auto 8px; padding: 7px 20px;
  font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #800000, #b33636);
  border-radius: 30px;
  box-shadow: 0 3px 12px rgba(128,0,0,.25);
}
.karnet-price__ribbon i { font-size: 11px; color: #ffd700; }

/* heading */
.karnet-price__h2 {
  font-size: 32px; font-weight: 800; color: #222;
  margin: 16px 0 6px; position: relative; z-index: 1;
}
.karnet-price__tagline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 17px; font-weight: 700; letter-spacing: .5px;
  color: #800000; margin: 0 0 4px;
  position: relative; z-index: 1;
}
.karnet-price__tagline i { font-size: 15px; }
.karnet-price__subtitle {
  font-size: 17px; color: #222; margin: 0 0 24px; padding: 0 32px;
  position: relative; z-index: 1;
}

/* ---------- option panels ---------- */
.karnet-price__option {
  margin: 0 28px; padding: 24px 20px 20px; border-radius: 16px;
  position: relative; z-index: 1;
}
.karnet-price__option--year {
  background: rgba(0,0,0,.02);
  border: 1px solid rgba(0,0,0,.06);
}
.karnet-price__option--month {
  background: linear-gradient(135deg, #fdf5f5 0%, #f8ecec 100%);
  border: 2.5px solid #800000;
  box-shadow: 0 6px 28px rgba(128,0,0,.15);
}
.karnet-price__option-head {
  font-size: 15px; font-weight: 700; color: #800000; letter-spacing: .5px;
  text-transform: uppercase; margin: 0 0 12px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.karnet-price__option-head i { font-size: 14px; }
/* "Popularne" badge on monthly */
.karnet-price__option-badge {
  position: absolute; top: -11px; right: 20px;
  padding: 4px 14px; font-size: 11px; font-weight: 700; letter-spacing: .5px;
  color: #fff; background: linear-gradient(135deg, #e65100, #ff8f00); border-radius: 20px;
  box-shadow: 0 2px 8px rgba(230,81,0,.3);
  display: flex; align-items: center; gap: 4px;
}
.karnet-price__option-badge i { font-size: 10px; }

/* prices inside options */
.karnet-price__amount {
  display: flex; align-items: baseline; justify-content: center; gap: 10px;
  margin: 0 0 6px; position: relative; z-index: 1;
}
.karnet-price__value {
  font-size: 48px; font-weight: 800; color: #800000; line-height: 1;
}
@media (max-width: 500px) {
  .karnet-price__value { font-size: 38px; }
  .karnet-price__option { margin: 0 16px; padding: 20px 14px 16px; }
}
.karnet-price__currency { font-size: 19px; font-weight: 600; color: #888; }
.karnet-price__brutto {
  font-size: 32px; font-weight: 800; color: #555; margin: 4px 0 8px;
  position: relative; z-index: 1;
}
.karnet-price__period {
  font-size: 18px; font-weight: 800; color: #800000; margin: 0;
  letter-spacing: 1px; text-transform: uppercase;
  position: relative; z-index: 1;
}

/* installment values */
.karnet-price__installment {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  position: relative; z-index: 1;
}
.karnet-price__installment-value { font-size: 52px; font-weight: 900; color: #800000; }
.karnet-price__installment-value small { font-size: 18px; font-weight: 500; color: #888; }
.karnet-price__installment-brutto { font-size: 19px; font-weight: 700; color: #555; }
.karnet-price__installment-label { font-size: 15px; font-weight: 600; color: #888; letter-spacing: .5px; }
.karnet-price__credit-info { font-size: 11px; line-height: 1.4; font-weight: 300; color: #aaa; text-align: center; margin: 8px 0 0; padding: 0 10px; }
@media (max-width: 500px) {
  .karnet-price__installment-value { font-size: 40px; }
}

/* ---------- LUB separator ---------- */
.karnet-price__sep {
  display: flex; align-items: center; gap: 14px;
  margin: 16px 36px; position: relative; z-index: 1;
}
.karnet-price__sep-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(128,0,0,.18), transparent);
}
.karnet-price__sep-text {
  font-size: 13px; font-weight: 800; color: #b0b0b0; letter-spacing: 3px;
}

/* ---------- features list ---------- */
.karnet-price__features {
  list-style: none; text-align: left; margin: 28px 28px 32px;
  display: flex; flex-direction: column; gap: 0;
  position: relative; z-index: 1;
  background: linear-gradient(135deg, #faf5f5 0%, #f5eaea 100%);
  border-radius: 14px; border: 1.5px solid rgba(128,0,0,.08);
  padding: 8px 0; overflow: hidden;
}
.karnet-price__features li {
  font-size: 16px; font-weight: 600; color: #333;
  display: flex; align-items: center; gap: 12px;
  padding: 11px 22px;
  border-bottom: 1px solid rgba(128,0,0,.06);
  transition: opacity .4s ease, transform .4s ease, background .2s ease;
  opacity: 0; transform: translateX(-20px);
  transition: opacity .4s ease, transform .4s ease;
}
.karnet-price__features li:last-child { border-bottom: none; }
.karnet-price__features li:hover { background: rgba(128,0,0,.03); }
.karnet-price__features li i {
  color: #fff; font-size: 10px; width: 22px; height: 22px; flex-shrink: 0;
  background: #800000; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.karnet-price__features.karnet-price__features--visible li { opacity: 1; transform: translateX(0); }
.karnet-price__features.karnet-price__features--visible li:nth-child(1) { transition-delay: .1s; }
.karnet-price__features.karnet-price__features--visible li:nth-child(2) { transition-delay: .2s; }
.karnet-price__features.karnet-price__features--visible li:nth-child(3) { transition-delay: .3s; }
.karnet-price__features.karnet-price__features--visible li:nth-child(4) { transition-delay: .4s; }
.karnet-price__features.karnet-price__features--visible li:nth-child(5) { transition-delay: .5s; }
.karnet-price__features.karnet-price__features--visible li:nth-child(6) { transition-delay: .6s; }

/* ---------- CTA button ---------- */
.karnet-price__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: calc(100% - 56px); margin: 0 28px; padding: 18px 32px;
  font-size: 18px; font-weight: 700; font-family: "Poppins", sans-serif;
  color: #fff; background: linear-gradient(135deg, #800000 0%, #a52a2a 100%);
  border-radius: 14px; text-decoration: none;
  box-shadow: 0 6px 24px rgba(128,0,0,.25);
  transition: all .3s ease; position: relative; z-index: 1; overflow: hidden;
}
.karnet-price__btn::after {
  content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.12) 50%, transparent 100%);
  transition: left .5s ease;
}
.karnet-price__btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(128,0,0,.4); }
.karnet-price__btn:hover::after { left: 100%; }

/* ================================================================
   KARNET OPEN – CONTACT / ORDER SECTION (turbo)
   ================================================================ */
.kc-wrap {
  width: 100%; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #0a0a0f 0%, #12111a 30%, #1a1424 60%, #0f0d14 100%);
  scroll-margin-top: 140px;
}

/* ---- animated background ---- */
.kc-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.kc-bg__orb { position: absolute; border-radius: 50%; filter: blur(100px); }
.kc-bg__orb--1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(128,0,0,.35), transparent 70%); top: -180px; right: -120px; animation: kcOrb1 14s ease-in-out infinite; }
.kc-bg__orb--2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(180,80,0,.2), transparent 70%); bottom: -140px; left: -100px; animation: kcOrb2 18s ease-in-out infinite; }
.kc-bg__orb--3 { width: 350px; height: 350px; background: radial-gradient(circle, rgba(128,0,0,.18), transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); animation: kcOrb3 11s ease-in-out infinite; }
.kc-bg__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px); background-size: 50px 50px; }
.kc-bg__noise { position: absolute; inset: 0; opacity: .03; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

@keyframes kcOrb1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-60px,40px) scale(1.15); } }
@keyframes kcOrb2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(50px,-50px) scale(1.1); } }
@keyframes kcOrb3 { 0%,100% { transform: translate(-50%,-50%) scale(1); opacity: .5; } 50% { transform: translate(-50%,-50%) scale(1.3); opacity: 1; } }

/* ---- trust bar ---- */
.kc-trust {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap;
  padding: 32px 40px;
  background: rgba(255,255,255,.03); border-bottom: 1px solid rgba(255,255,255,.06);
}
.kc-trust__item { display: flex; align-items: center; gap: 12px; font-size: 18px; color: rgba(255,255,255,.6); font-weight: 500; white-space: nowrap; }
.kc-trust__item i { font-size: 22px; color: #a52a2a; }
.kc-trust__item strong { color: rgba(255,255,255,.9); font-weight: 700; }
.kc-trust__sep { width: 1px; height: 24px; background: rgba(255,255,255,.12); }
@media (max-width: 650px) {
  .kc-trust { gap: 16px 24px; padding: 24px 20px; }
  .kc-trust__item { font-size: 15px; gap: 10px; }
  .kc-trust__item i { font-size: 18px; }
  .kc-trust__sep { display: none; }
}

/* ---- main layout ---- */
.kc {
  position: relative; z-index: 1;
  width: 100%; max-width: 1300px; margin: 0 auto;
  padding: 80px 30px 90px;
  display: flex; gap: 70px; align-items: flex-start;
}
@media (max-width: 1000px) { .kc { flex-direction: column; gap: 50px; padding: 60px 24px 70px; } }

/* ---- left column ---- */
.kc__left { flex: 0 0 420px; }
@media (max-width: 1000px) { .kc__left { flex: none; width: 100%; } }

.kc__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 100px;
  background: rgba(128,0,0,.2); border: 1px solid rgba(128,0,0,.4);
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: #e57373; margin-bottom: 20px;
}
.kc__badge i { font-size: 11px; }

.kc__h2 {
  font-size: 42px; font-weight: 900; line-height: 1.15; color: #fff; margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}
.kc__h2 span {
  background: linear-gradient(135deg, #e57373 0%, #ff8a65 50%, #ffb74d 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) { .kc__h2 { font-size: 32px; } }

.kc__text { font-size: 16px; color: rgba(255,255,255,.55); line-height: 1.7; margin: 0 0 36px 0; max-width: 380px; }

/* perks */
.kc__perks { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.kc__perk {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-radius: 14px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  transition: all .35s ease;
}
.kc__perk:hover { background: rgba(128,0,0,.08); border-color: rgba(128,0,0,.2); transform: translateX(6px); }
.kc__perk-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(128,0,0,.25), rgba(128,0,0,.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #e57373;
}
.kc__perk div { display: flex; flex-direction: column; gap: 2px; }
.kc__perk strong { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.9); }
.kc__perk span { font-size: 12.5px; color: rgba(255,255,255,.4); font-weight: 500; }

/* direct contact */
.kc__contact-direct { display: flex; gap: 20px; flex-wrap: wrap; }
.kc__direct-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600; color: rgba(255,255,255,.7);
  text-decoration: none; transition: all .3s ease;
}
.kc__direct-link i { font-size: 14px; color: #a52a2a; transition: color .3s; }
.kc__direct-link:hover { color: #fff; }
.kc__direct-link:hover i { color: #e57373; }

.kc__contact-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  margin: 24px 0 10px 0;
  letter-spacing: 0.3px;
}
.kc__contact-direct--big {
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
}
.kc__direct-link--big {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: rgba(255,255,255,.95) !important;
  gap: 14px !important;
}
.kc__direct-link--big i {
  font-size: 20px !important;
  color: #e57373 !important;
}
.kc__direct-link--big:hover {
  color: #fff !important;
}

/* ---- right column — form card ---- */
.kc__right { flex: 1; min-width: 0; }

.kc__form {
  position: relative;
  display: flex; flex-direction: column; gap: 18px;
  padding: 40px 36px 36px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  backdrop-filter: blur(20px) saturate(1.3); -webkit-backdrop-filter: blur(20px) saturate(1.3);
  box-shadow: 0 20px 60px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
}
.kc__form::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #800000, #e57373, #ff8a65, #800000);
  background-size: 200% 100%;
  animation: kcFormGlow 4s linear infinite;
}
@keyframes kcFormGlow { 0% { background-position: 0% 0; } 100% { background-position: 200% 0; } }

.kc__form-header { text-align: center; margin-bottom: 8px; }
.kc__form-title { font-size: 22px; font-weight: 800; color: #fff; margin: 0 0 14px; }

/* payment toggle */
.kc__pay-toggle { display: flex; gap: 10px; }
.kc__pay-option { flex: 1; cursor: pointer; position: relative; }
.kc__pay-option input { position: absolute; opacity: 0; pointer-events: none; }

.kc__pay-card {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 16px 12px 14px; border-radius: 14px;
  background: rgba(255,255,255,.03); border: 2px solid rgba(255,255,255,.08);
  transition: all .3s ease; position: relative;
}
.kc__pay-option input:checked ~ .kc__pay-card {
  background: rgba(128,0,0,.18); border-color: rgba(229,115,115,.6);
  box-shadow: 0 0 25px rgba(128,0,0,.25), inset 0 1px 0 rgba(255,255,255,.06);
}
.kc__pay-option:hover .kc__pay-card { border-color: rgba(255,255,255,.18); }
.kc__pay-option input:checked ~ .kc__pay-card::before {
  content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; top: 10px; right: 12px; font-size: 22px; color: #e57373;
  animation: kc-pulse 2s ease-in-out infinite;
}
@keyframes kc-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.15); }
}

.kc__pay-badge {
  position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
  padding: 2px 10px; border-radius: 6px;
  background: linear-gradient(135deg, #e57373, #ff8a65); color: #fff;
  font-size: 9px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase;
  white-space: nowrap;
}

.kc__pay-label {
  font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  color: rgba(255,255,255,.4); transition: color .3s;
}
.kc__pay-option input:checked ~ .kc__pay-card .kc__pay-label { color: rgba(255,255,255,.7); }

.kc__pay-netto { font-size: 22px; font-weight: 900; color: #e57373; letter-spacing: -0.3px; }
.kc__pay-brutto { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.45); }

@media (max-width: 400px) {
  .kc__pay-toggle { flex-direction: column; gap: 8px; }
  .kc__pay-netto { font-size: 19px; }
}

.kc__form-row { display: flex; gap: 14px; }
@media (max-width: 550px) { .kc__form-row { flex-direction: column; } }

.kc__form-field { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.kc__form-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.5); letter-spacing: .5px; text-transform: uppercase; }
.kc__form-label span { text-transform: none; font-weight: 400; color: rgba(255,255,255,.3); }

.kc__form-input {
  width: 100%; padding: 14px 18px;
  font-size: 15px; font-family: "Poppins", sans-serif; color: #fff;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; outline: none; transition: all .3s ease;
}
.kc__form-input::placeholder { color: rgba(255,255,255,.2); }
.kc__form-input:focus { border-color: rgba(128,0,0,.6); background: rgba(255,255,255,.09); box-shadow: 0 0 0 3px rgba(128,0,0,.12); }
.kc__form-textarea { resize: vertical; min-height: 70px; }

.kc__form-checkbox {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
}
.kc__form-checkbox input[type=checkbox] { width: 18px; height: 18px; accent-color: #a52a2a; flex-shrink: 0; }
.kc__form-checkbox span { font-size: 12.5px; color: rgba(255,255,255,.4); line-height: 1.4; }

.kc__form-submit {
  width: 100%; padding: 18px 32px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 17px; font-weight: 800; font-family: "Poppins", sans-serif; letter-spacing: .3px;
  color: white; background: linear-gradient(135deg, #800000 0%, #a52a2a 50%, #c0392b 100%);
  border: none; border-radius: 14px; cursor: pointer;
  position: relative; overflow: hidden;
  box-shadow: 0 6px 24px rgba(128,0,0,.35);
  transition: all .4s ease;
}
.kc__form-submit::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: left .6s ease;
}
.kc__form-submit:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(128,0,0,.5); }
.kc__form-submit:hover::before { left: 100%; }
.kc__form-submit i { transition: transform .3s; }
.kc__form-submit:hover i { transform: translateX(5px); }

.kc__form-fine { text-align: center; margin: 0; }
.kc__form-fine a { font-size: 12px; color: rgba(255,255,255,.3); text-decoration: underline; transition: color .3s; }
.kc__form-fine a:hover { color: rgba(255,255,255,.6); }

@media (max-width: 1000px) {
  .kc__form { padding: 32px 24px 28px; }
}

.karnet-intro__link {
  color: #a52a2a;
  text-decoration: underline;
  font-weight: 600;
  transition: 0.3s;
}
.karnet-intro__link:hover {
  color: #800000;
}

.karnet-reg-hero {
  width: 100%;
  background: linear-gradient(160deg, #1a1414 0%, #2a1e1e 40%, #201818 100%);
  padding: 60px 30px 70px;
  position: relative;
  overflow: hidden;
}
.karnet-reg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 40%, rgba(128, 0, 0, 0.12) 0%, transparent 55%), radial-gradient(circle at 80% 70%, rgba(128, 0, 0, 0.07) 0%, transparent 50%);
  pointer-events: none;
}
.karnet-reg-hero__inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.karnet-reg-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin: 0 0 36px 0;
  transition: 0.3s;
}
.karnet-reg-hero__back i {
  font-size: 13px;
}
.karnet-reg-hero__back:hover {
  color: rgba(255, 255, 255, 0.85);
}
.karnet-reg-hero__h1 {
  font-size: 42px;
  font-weight: 800;
  color: white;
  margin: 0 0 18px 0;
  line-height: 1.15;
}
@media (max-width: 768px) {
  .karnet-reg-hero__h1 {
    font-size: 30px;
  }
}
.karnet-reg-hero__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0 0 30px 0;
  max-width: 650px;
}
.karnet-reg-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.karnet-reg-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  backdrop-filter: blur(6px);
}
.karnet-reg-hero__badge i {
  color: #d46a6a;
  font-size: 14px;
}

.karnet-reg-list {
  width: 100%;
  padding: 70px 30px 80px;
  background: linear-gradient(180deg, #faf8f8 0%, #f5f2f2 100%);
}
.karnet-reg-list__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: stretch;
  gap: 0;
}
.karnet-reg-list__item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 30px 24px;
  position: relative;
  border-bottom: 1px solid rgba(128, 0, 0, 0.06);
  transition: all 0.35s ease;
  border-radius: 14px;
}
.karnet-reg-list__item:last-child {
  border-bottom: none;
}
.karnet-reg-list__item:hover {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 24px rgba(128, 0, 0, 0.06);
  transform: translateX(4px);
}
@media (max-width: 550px) {
  .karnet-reg-list__item {
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 16px;
  }
}
.karnet-reg-list__num {
  flex-shrink: 0;
  font-size: 36px;
  font-weight: 900;
  color: rgba(128, 0, 0, 0.1);
  line-height: 1;
  width: 48px;
  user-select: none;
}
@media (max-width: 550px) {
  .karnet-reg-list__num {
    font-size: 28px;
    width: 36px;
  }
}
.karnet-reg-list__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(128, 0, 0, 0.07) 0%, rgba(165, 42, 42, 0.12) 100%);
  color: #a52a2a;
  font-size: 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
@media (max-width: 550px) {
  .karnet-reg-list__icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
.karnet-reg-list__item:hover .karnet-reg-list__icon {
  background: linear-gradient(135deg, rgba(128, 0, 0, 0.1) 0%, rgba(165, 42, 42, 0.17) 100%);
  transform: scale(1.08);
}
.karnet-reg-list__content {
  flex: 1;
  min-width: 0;
}
.karnet-reg-list__title {
  font-size: 17px;
  font-weight: 700;
  color: #222;
  margin: 0 0 6px 0;
  line-height: 1.3;
}
.karnet-reg-list__text {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

.karnet-reg-cta {
  width: 100%;
  padding: 70px 30px;
  background: linear-gradient(160deg, #1a1414 0%, #2a1e1e 40%, #201818 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.karnet-reg-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(128, 0, 0, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.karnet-reg-cta__h2 {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin: 0 0 12px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .karnet-reg-cta__h2 {
    font-size: 24px;
  }
}
.karnet-reg-cta__text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 32px 0;
  position: relative;
  z-index: 1;
}
.karnet-reg-cta__btn {
  display: inline-block;
  padding: 16px 44px;
  font-size: 17px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: white;
  background: #800000;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  z-index: 1;
}
.karnet-reg-cta__btn:hover {
  background: #a52a2a;
  box-shadow: 0 8px 28px rgba(128, 0, 0, 0.45);
  transform: translateY(-2px);
}

.karnet-reg-rules-link {
  width: 100%;
  padding: 40px 30px;
  background: #f0edec;
  text-align: center;
}
.karnet-reg-rules-link__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #800000;
  background: white;
  border: 2px solid rgba(128, 0, 0, 0.15);
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
}
.karnet-reg-rules-link__btn i:first-child {
  font-size: 18px;
}
.karnet-reg-rules-link__btn i:last-child {
  font-size: 14px;
  transition: 0.3s;
}
.karnet-reg-rules-link__btn:hover {
  background: #800000;
  color: white;
  border-color: #800000;
  box-shadow: 0 6px 24px rgba(128, 0, 0, 0.25);
}
.karnet-reg-rules-link__btn:hover i:last-child {
  transform: translateX(4px);
}
.karnet-reg-rules-link__btn--full {
  font-size: 18px;
  padding: 20px 44px;
  background: #2f7d32;
  color: white;
  border-color: #2f7d32;
  box-shadow: 0 4px 16px rgba(47, 125, 50, 0.25);
}
.karnet-reg-rules-link__btn--full:hover {
  background: #1b5e20;
  border-color: #1b5e20;
  color: white;
  box-shadow: 0 8px 28px rgba(47, 125, 50, 0.4);
}

.karnet-rules-hero {
  width: 100%;
  background: linear-gradient(160deg, #1a1414 0%, #2a1e1e 40%, #201818 100%);
  padding: 50px 30px 50px;
  position: relative;
}
.karnet-rules-hero__inner {
  max-width: 860px;
  margin: 0 auto;
}
.karnet-rules-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin: 0 0 28px 0;
  transition: 0.3s;
}
.karnet-rules-hero__back i {
  font-size: 13px;
}
.karnet-rules-hero__back:hover {
  color: rgba(255, 255, 255, 0.85);
}
.karnet-rules-hero__h1 {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .karnet-rules-hero__h1 {
    font-size: 26px;
  }
}

.karnet-rules {
  width: 100%;
  padding: 50px 30px 70px;
  background: #faf8f8;
}
.karnet-rules__inner {
  max-width: 860px;
  margin: 0 auto;
}
.karnet-rules__section {
  padding: 28px 0;
  border-bottom: 1px solid rgba(128, 0, 0, 0.06);
}
.karnet-rules__section:last-child {
  border-bottom: none;
}
.karnet-rules__h2 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin: 0 0 14px 0;
}
.karnet-rules__text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 10px 0;
}
.karnet-rules__text:last-child {
  margin-bottom: 0;
}
.karnet-rules__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: stretch;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.karnet-rules__list li {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  padding: 0 0 0 22px;
  position: relative;
}
.karnet-rules__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a52a2a;
  opacity: 0.4;
}
.karnet-rules__form-box {
  background: white;
  border: 1px solid #ece8e8;
  border-radius: 12px;
  padding: 24px 28px;
  margin: 14px 0 0 0;
}

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

html {
  overflow-x: hidden !important;
  background: white;
}
@media only screen and (min-width: 601px) {
  html {
    zoom: 0.9;
  }
}
body, html {
  scroll-behavior: smooth;
  min-width: 100%;
  margin: 0;
  min-height: 100vh;
  padding: 0;
  background: white;
  font-family: "Poppins", sans-serif !important;
  display: flex;
  flex-direction: column;
  align-items: safe flex-start;
  justify-content: safe flex-start;
  position: relative;
  overflow-x: hidden !important;
  width: 100%;
}

body {
  overflow-x: hidden;
}

.body--open {
  overflow-y: hidden !important;
}


/* ====== TRAINER POPUP (trp__) ====== */
.trp__popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 99999;
  display: flex;
  align-items: safe center;
  justify-content: safe center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.trp__popup--active {
  opacity: 1;
  visibility: visible;
}
.trp__container {
  width: 100%;
  max-width: 900px;
  border-radius: 24px;
  border: 2px solid #800000;
  background: white;
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(128, 0, 0, 0.3) transparent;
}
.trp__container::-webkit-scrollbar { width: 6px; }
.trp__container::-webkit-scrollbar-track { background: transparent; }
.trp__container::-webkit-scrollbar-thumb { background: rgba(128, 0, 0, 0.3); border-radius: 3px; }
.trp__closeBtn {
  position: sticky;
  top: 0;
  align-self: flex-end;
  margin-bottom: -36px;
  z-index: 10;
  color: #800000;
  font-size: 20px;
  outline: none;
  border: none;
  background: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.trp__closeBtn:hover { background: rgba(128, 0, 0, 0.08); }
.trp__top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 20px;
  width: 100%;
}
.trp__top img {
  border-radius: 16px;
  width: 220px;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.trp__topInfo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trp__name {
  font-size: 36px;
  color: #800000;
  font-weight: 800;
  line-height: 1em;
}
.trp__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0a66c2;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.trp__linkedin:hover {
  color: #004182;
  text-decoration: underline;
}
.trp__linkedin i {
  font-size: 18px;
}
.trp__text {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  margin: 20px 0 0 0;
  line-height: 1.6em;
}
.trp__text p { margin: 0 0 8px; }
.trp__h3 {
  color: #800000;
  font-size: 18px;
  font-weight: 800;
  margin: 30px 0 8px 0;
  width: 100%;
}
.trp__trainings {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.trp__training {
  color: black;
  font-size: 16px;
  outline: none;
  text-decoration: underline;
  width: 100%;
  font-weight: 600;
  padding: 3px 0;
  transition: color 0.3s;
}
.trp__training i {
  padding: 0 5px 0 0;
  color: #800000;
}
.trp__training:hover { color: #800000; }
@media only screen and (max-width: 850px) {
  .trp__container { padding: 25px 20px; width: 96%; }
  .trp__top { flex-direction: column; align-items: flex-start; }
  .trp__top img { width: 90%; max-width: 220px; }
  .trp__name { font-size: 28px; }
}

/* ====== Guaranteed-term tooltip (gtip) — global ====== */
.gtip {
  position: relative;
  cursor: default;
}
.gtip::after {
  content: "Terminy gwarantowane na 100% się odbędą! Nawet jeśli byłbyś jedynym uczestnikiem szkolenia \2014  ryzyko ponosimy my jako organizator.";
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 10px;
  white-space: normal;
  width: 280px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  pointer-events: none;
  z-index: 100;
}
.gtip::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #1a1a1a;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  pointer-events: none;
  z-index: 100;
}
.gtip:hover::after,
.gtip:hover::before {
  opacity: 1;
  visibility: visible;
}

/* ====== Non-guaranteed-term tooltip (ngtip) — global ====== */
.ngtip {
  position: relative;
  cursor: default;
}
.ngtip::after {
  content: "Termin niegwarantowany oznacza planowany termin szkolenia, którego realizacja wymaga potwierdzenia minimalnej liczby uczestników oraz dostępności trenera. Po spełnieniu tych warunków termin otrzymuje status gwarantowanego.";
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 10px;
  white-space: normal;
  width: 280px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  pointer-events: none;
  z-index: 100;
}
.ngtip::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #1a1a1a;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  pointer-events: none;
  z-index: 100;
}
.ngtip:hover::after,
.ngtip:hover::before {
  opacity: 1;
  visibility: visible;
}

/* ---- GLOBAL BADGES ---- */
.std-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
}
.std-badge--yes    { background: #e8f5e9; color: #2e7d32; }
.std-badge--no     { background: #ffebee; color: #c62828; }
.std-badge--online { background: #e3f2fd; color: #1565c0; }
.std-badge--onsite { background: #fff3e0; color: #e65100; }
.std-badge--warn   { background: #fff8e1; color: #f57f17; }
.std-badge--info   { background: #ede7f6; color: #4527a0; }
.std-comment       { color: #c62828; font-weight: 600; }
.std-price         { color: #c62828; font-weight: 700; }
.std-price--positive { color: #2e7d32; }
/* ---- END GLOBAL BADGES ---- */

/*# sourceMappingURL=style.css.map */
