@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Poppins-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
}
:root {
  --light-color: #ffffff;
  --dark-color: #1a1a2e;
  --primary-color: #16213e; /* deep blue */
  --accent-color: #1d61b5; /* navy blue */
  --warning-color: #e94560; /* coral red */
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol,
li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: var(--dark-color);
}

#accept-cookies,
#reject-cookies {
  padding: 5px;
  border-radius: 5px;
}

body.lock {
  overflow: hidden;
}

.container {
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

a {
  transition: all 0.3s ease;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  font-weight: 700;
  border: 1px solid var(--dark-color);
  width: 100%;
  transition: all 0.3s ease;
}

.error-message {
  font-size: 0.9rem;
  color: red;
  font-weight: 500;
}

/*  STRUCTURE  */
.mq-header {
  padding: 10px 0;
  box-shadow: 0 5px 5px -5px var(--accent-color);
}
.mq-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.mq-header__logo {
  max-width: 200px;
  width: 100%;
}
.mq-header__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.mq-header__btn {
  width: 120px;
  padding: 8px 0;
  position: relative;
  overflow: hidden;
  background: var(--light-color);
  color: var(--dark-color);
  z-index: 2;
  transition: all 0.5s ease;
  border: 1px solid #1c1c1c;
}
.mq-header__btn::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 100px;
  transform: translateX(-120%) skewX(-45deg);
  background-color: rgba(250, 207, 181, 0.5019607843);
  left: 0;
  transition: all 2s ease;
  z-index: -1;
}
.mq-header__btn:hover {
  color: var(--light-color);
  background-color: var(--accent-color);
}
.mq-header__btn:hover::before {
  transform: translateX(120%) skewX(-45deg);
}

.mq-logo {
  max-width: 70px;
}
.navig__list {
  display: none;
}
@media screen and (min-width: 1200px) {
  .navig__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}
.navig__list.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  gap: 20px;
  gap: 20px;
  background-color: var(--light-color);
  z-index: 10;
}
.mq-navig__link {
  color: var(--primary-color);
}
.mq-navig__link:hover {
  color: var(--accent-color);
}

.burger {
  flex-shrink: 0;
  width: 24px;
  height: 20px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
}
.burger:before {
  position: relative;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  background-color: var(--dark-color);
  top: 0%;
  transform: translateY(0%) rotate(0deg);
  transition: all 0.5s ease;
}
.burger:after {
  position: relative;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  background-color: var(--dark-color);
  transition: all 0.5s ease;
  bottom: 0;
  transform: translateY(0%) rotate(0deg);
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--dark-color);
  transition: all 0.5s ease;
}
.burger.is-open {
  z-index: 11;
}
.burger.is-open::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.burger.is-open::after {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
.burger.is-open span {
  transform: scale(0);
}
@media screen and (max-width: 1199px) {
  .burger {
    display: flex;
  }
}

@media screen and (min-width: 1200px) {
  .burger {
    display: none;
  }
}

.mq-hero {
  padding: 120px 0;
  position: relative;
  color: var(--light-color);
  background-image: url(../images/hero.webp);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}
.mq-hero:before {
  position: absolute;
  content: "";
  inset: 0;
  background-image: linear-gradient(
    to right,
    rgba(29, 29, 29, 0.8),
    rgba(29, 29, 29, 0.6),
    rgba(29, 29, 29, 0)
  );
  z-index: -1;
}
.mq-hero__title {
  font-size: 48px;
  max-width: 640px;
  margin-bottom: 16px;
}
.mq-hero__text {
  max-width: 640px;
  margin-bottom: 16px;
}
.mq-hero__btn {
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 8px 0;
  max-width: 140px;
}
.mq-hero__btn:hover {
  color: var(--light-color);
  background-color: var(--accent-color);
}

.mq-about {
  padding: 70px 0;
}
.mq-about__title {
  text-align: center;
  margin-bottom: 32px;
  font-size: 36px;
}
.mq-about__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
@media screen and (max-width: 1200px) {
  .mq-about__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .mq-about__list {
    grid-template-columns: 1fr;
  }
}
.mq-about__item {
  min-height: 425px;
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.mq-about__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
  border-radius: 24px 24px 0 0;
}

.mq-about__item::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(15, 52, 96, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mq-about__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
  border-radius: 24px 24px 0 0;
  z-index: 1;
}

.mq-about__item .mq-about__decorative-dots {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 4px;
  z-index: 1;
}

.mq-about__item .mq-about__decorative-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-color);
  opacity: 0.3;
  transition: all 0.3s ease;
}

.mq-about__item:hover .mq-about__decorative-dots span {
  opacity: 0.6;
  transform: scale(1.2);
}

.mq-about__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.mq-about__item:hover::after {
  transform: scale(1.2);
  opacity: 0.8;
}

.mq-about__media {
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.mq-about__media img {
  border-radius: 16px;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 240px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.mq-about__item:hover .mq-about__media img {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.mq-about__item-title {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  z-index: 2;
}

.mq-about__item-title::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 24px;
  background: linear-gradient(
    180deg,
    var(--accent-color),
    var(--primary-color)
  );
  border-radius: 2px;
}

.mq-about__item-text {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #475569;
  position: relative;
  z-index: 2;
}

.mq-about__icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--primary-color)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(15, 52, 96, 0.3);
  transition: all 0.3s ease;
  z-index: 3;
}

.mq-about__item:hover .mq-about__icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 16px rgba(15, 52, 96, 0.4);
}

.mq-about__icon svg {
  width: 24px;
  height: 24px;
}
.mq-about__btn {
  max-width: 150px;
  margin: 0 auto;
  padding: 12px 0;
}
.mq-about__btn:hover {
  background-color: var(--accent-color);
  -moz-column-rule: var(--light-color);
  column-rule: var(--light-color);
}

.mq-service {
  padding: 70px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.mq-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.mq-service::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(15, 52, 96, 0.1) 0%,
    transparent 70%
  );
  animation: float 20s ease-in-out infinite;
  z-index: 1;
}

.mq-service__candlesticks {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

.mq-service__candlestick {
  position: absolute;
  width: 6px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.mq-service__candlestick::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1px;
  top: -15px;
  height: 15px;
}

.mq-service__candlestick::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1px;
  bottom: -15px;
  height: 15px;
}

.mq-service__candlestick--green {
  background: rgba(34, 197, 94, 0.8);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.mq-service__candlestick--green::before,
.mq-service__candlestick--green::after {
  background: rgba(34, 197, 94, 0.9);
}

.mq-service__candlestick--red {
  background: rgba(239, 68, 68, 0.8);
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

.mq-service__candlestick--red::before,
.mq-service__candlestick--red::after {
  background: rgba(239, 68, 68, 0.9);
}

.mq-service__candlestick:nth-child(odd) {
  animation: candlestick-pulse 3s ease-in-out infinite;
}

.mq-service__candlestick:nth-child(even) {
  animation: candlestick-pulse 3s ease-in-out infinite 1.5s;
}

.mq-service__candlestick:nth-child(3n) {
  animation: candlestick-pulse 3s ease-in-out infinite 0.75s;
}

.mq-service__candlestick:nth-child(4n) {
  animation: candlestick-pulse 3s ease-in-out infinite 2.25s;
}

@keyframes candlestick-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.8;
    transform: scaleY(1.1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-10px, -10px) rotate(1deg);
  }
  50% {
    transform: translate(10px, -5px) rotate(-1deg);
  }
  75% {
    transform: translate(-5px, 10px) rotate(0.5deg);
  }
}

.mq-service .container {
  position: relative;
  z-index: 2;
}

.mq-service__title {
  text-align: center;
  margin-bottom: 16px;
  font-size: 36px;
  position: relative;
}

.mq-service__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--warning-color));
  border-radius: 2px;
}

.mq-service__subtitle {
  text-align: center;
  margin-bottom: 32px;
  font-size: 20px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.mq-service__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
@media screen and (max-width: 1200px) {
  .mq-service__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .mq-service__list {
    grid-template-columns: 1fr;
  }
}
.mq-service__item {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mq-service__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--warning-color));
  border-radius: 24px 24px 0 0;
}

.mq-service__item::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(15, 52, 96, 0.1) 0%,
    transparent 70%
  );
  transition: all 0.3s ease;
  opacity: 0;
}

.mq-service__item:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.mq-service__item:hover::after {
  opacity: 1;
  transform: scale(1.2);
}

.mq-service__item svg {
  color: var(--accent-color);
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.mq-service__item:hover svg {
  transform: scale(1.1) rotate(5deg);
  color: var(--warning-color);
}

.mq-service__item-title {
  margin-block: 16px;
  font-size: 24px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.mq-service__item-text {
  line-height: 1.6;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.mq-service__decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.mq-service__decorative-circle {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}

.mq-service__decorative-square {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(15, 52, 96, 0.3);
  transform: rotate(45deg);
  animation: pulse 4s ease-in-out infinite;
}

.mq-service__decorative-triangle {
  position: absolute;
  bottom: 15%;
  left: 15%;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid rgba(233, 69, 96, 0.1);
  animation: float-triangle 6s ease-in-out infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: rotate(45deg) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: rotate(45deg) scale(1.1);
    opacity: 0.6;
  }
}

@keyframes float-triangle {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.mq-service__item-decorative {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
}

.mq-service__item-dot {
  width: 8px;
  height: 8px;
  background: var(--warning-color);
  border-radius: 50%;
  margin-bottom: 4px;
  animation: blink 2s ease-in-out infinite;
}

.mq-service__item-line {
  width: 2px;
  height: 20px;
  background: linear-gradient(180deg, var(--accent-color), transparent);
  border-radius: 1px;
}

@keyframes blink {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}
.icza-service__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.icza-service__info h2 {
  margin-bottom: 16px;
  font-size: 36px;
  font-weight: 700;
  max-width: 380px;
}
.icza-service__info h2 span {
  display: block;
}
.icza-service__info p {
  max-width: 420px;
}

.mq-help {
  padding: 70px 0;
}
.mq-help__title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 16px;
}
.mq-help__subtitle {
  margin-bottom: 32px;
  font-size: 20px;
  text-align: center;
}
.mq-help__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.mq-help__list :nth-child(1) {
  grid-column: span 3;
}
@media screen and (max-width: 1200px) {
  .mq-help__list :nth-child(1) {
    grid-column: span 2;
  }
}
.mq-help__list :nth-child(2) {
  grid-column: span 3;
}
@media screen and (max-width: 1200px) {
  .mq-help__list :nth-child(2) {
    grid-column: span 2;
  }
}
@media screen and (max-width: 1200px) {
  .mq-help__list {
    grid-template-columns: 1fr;
  }
}
.mq-help__item {
  grid-column: span 2;
  padding: 24px;
  border-radius: 24px;
  background-color: var(--dark-color);
  color: var(--light-color);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mq-help__item-btn {
  display: flex;
  align-items: center;
  line-height: 24px;
  gap: 8px;
}
.mq-help__item-btn svg {
  position: relative;
  transform: translateX(0px) rotate(-90deg);
  max-width: 160px;
  transition: all 0.3s ease;
}
.mq-help__item-btn:hover {
  color: var(--dark-color);
}
.mq-help__item-btn:hover svg {
  transform: translateX(5px) rotate(-90deg);
}
.mq-help__btn {
  margin: 0 auto;
  max-width: 160px;
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 12px 0;
  gap: 8px;
}
.mq-help__btn:hover {
  background-color: var(--light-color);
}

.mq-join {
  padding: 30px 0;
  background-color: #f1f2f4;
  border-radius: 32px;
}
.mq-join__title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 16px;
}
.mq-join__subtitle {
  font-size: 20px;
  text-align: center;
  margin-bottom: 32px;
}
.join__form {
  background-color: #fff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__input {
  padding: 8px 16px;
  height: 44px;
  border: 1px solid #4f4f4f;
  border-radius: 8px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-color);
  background-color: var(--light-color);
  transition: all 0.3s ease;
}
.form__textarea {
  padding: 8px 16px;
  border: 1px solid #4f4f4f;
  border-radius: 8px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-color);
  background-color: var(--light-color);
  transition: all 0.3s ease;
}
.mq-form__btn {
  max-width: 180px;
  margin: 0 auto;
  padding: 12px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mq-form__btn:hover {
  background-color: var(--accent-color);
}
.mq-form__disclaimer {
  margin-top: -12px;
  text-align: center;
  margin-bottom: 6px;
}
.mq-form__disclaimer a {
  color: var(--accent-color);
}
.mq-form__disclaimer a:hover {
  color: var(--primary-color);
}

.service-page {
  padding: 70px 0;
}
.service-page__title {
  font-size: 32px;
  margin-bottom: 32px;
  text-align: center;
  color: var(--primary-color);
  font-weight: 700;
}
.service-page__content p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: var(--dark-color);
}
.service-page__content h2 {
  margin-bottom: 12px;
  margin-top: 24px;
  color: var(--primary-color);
  font-size: 1.5em;
  font-weight: 600;
}
.service-page__content a {
  color: var(--accent-color);
  text-decoration: underline;
  transition: all 0.3s ease;
}
.service-page__content a:hover {
  color: var(--primary-color);
  text-decoration: none;
}
.service-page__content ul {
  margin-bottom: 12px;
  padding-left: 20px;
}

.service-page__content ul li {
  margin-bottom: 8px;
  position: relative;
}

.service-page__content ul li::before {
  content: "•";
  color: var(--accent-color);
  font-weight: bold;
  position: absolute;
  left: -15px;
}
.service-page__btn {
  max-width: 180px;
  width: 100%;
  margin: 32px auto 0;
  padding: 12px 0;
}
.service-page__btn:hover {
  background-color: var(--accent-color);
}

/* Медиа-запросы для service-page */
@media screen and (max-width: 768px) {
  .service-page {
    padding: 40px 0;
  }
  
  .service-page__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  
  .service-page__content h2 {
    font-size: 1.3em;
    margin-top: 20px;
  }
  
  .service-page__content p {
    font-size: 14px;
  }
}

.docomentation__inner {
  padding: 32px;
  border: 1px solid #4f4f4f;
  border-radius: 24px;
  background-color: #333333;
  margin: 20px 0;
}
.documentation__link {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  transition: all 0.5s ease;
  position: relative;
  font-weight: 700;
  border-radius: 8px;
  border: 1px solid var(--accent-color);
  padding: 8px 16px;
  cursor: pointer;
}

.documentation__link:hover {
  color: #000;
  background-color: var(--accent-color);
}

@media (max-width: 993px) {
  .documentation__link {
    display: flex;
    max-width: 220px;
    justify-content: center;
    margin: 0 auto;
  }
}

.documentation__text {
  color: var(--light-color);
  margin-bottom: 1.5rem;
}

/* License modal */
.license-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100;
}
.license-modal.is-open {
  display: flex;
}
.license-modal__dialog {
  background: #eaeaea;
  max-height: 90vh;
  color: var(--dark-color);
  border-radius: 16px;
  width: 100%;
  max-width: 1160px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.license-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.license-modal__title {
  font-size: 18px;
  font-weight: 700;
}
.license-modal__close {
  background: transparent;
  border: 0;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--dark-color);
}
.license-modal__content {
  background: #e6e6e6;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.license-modal__content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}
@media (max-width: 640px) {
  .license-modal__content {
    grid-template-columns: 1fr;
    overflow-y: scroll;
    max-height: 80vh;
  }
}

.mq-footer {
  background: #e7edff;
  padding: 35px 0;
}
.mq-footer__info-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}
.mq-footer__info-list :nth-child(1) {
  margin-right: auto;
  width: 70px;
}
@media screen and (max-width: 768px) {
  .mq-footer__info-list {
    flex-wrap: wrap;
  }
  .mq-footer__info-list :nth-child(1) {
    flex: 0 1 100%;
    margin: 0 auto;
  }
}
.mq-footer__info-link {
  color: var(--accent-color);
}
.mq-footer__info-link:hover {
  color: var(--primary-color);
}
.mq-footer__disclaimer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.mq-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 1200px) {
  .mq-footer__inner {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1200px) {
  .mq-footer__copy {
    order: 2;
    text-align: center;
    margin: 0 auto;
  }
}
.mq-footer__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 1200px) {
  .mq-footer__list {
    flex: 0 1 100%;
  }
}
@media screen and (max-width: 480px) {
  .mq-footer__list {
    flex-direction: column;
  }
}
.mq-footer__link {
  transition: color 0.3s ease;
  color: var(--accent-color);
}
.mq-footer__link:hover {
  color: var(--primary-color);
}

/*  STRUCTURE  */
/*  COMPONENTS  */
/* Modern Thank you page */
.thankyou__hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}
.thankyou__success-animation {
  margin-bottom: 32px;
}
.thankyou__circle {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  position: relative;
}
.thankyou__checkmark {
  width: 100%;
  height: 100%;
}
.thankyou__circle-bg {
  stroke: rgba(245, 158, 11, 0.1);
  stroke-width: 2;
}
.thankyou__circle-progress {
  stroke: var(--accent-color);
  stroke-width: 2;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 1s ease-in-out;
}
.thankyou__check {
  stroke: var(--accent-color);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  transition: stroke-dashoffset 0.5s ease-in-out 0.5s;
}
.thankyou__success-animation.animate .thankyou__circle-progress {
  stroke-dashoffset: 0;
}
.thankyou__success-animation.animate .thankyou__check {
  stroke-dashoffset: 0;
}
.thankyou__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark-color);
}
.thankyou__subtitle {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
}
.thankyou__content {
  max-width: 1000px;
  margin: 0 auto 48px;
}
.thankyou__section-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 32px;
  text-align: center;
  color: var(--dark-color);
}
.thankyou__timeline {
  margin-bottom: 48px;
}
.thankyou__steps {
  display: grid;
  gap: 24px;
}
.thankyou__step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}
.thankyou__step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.thankyou__step-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.thankyou__step-icon svg {
  width: 24px;
  height: 24px;
}
.thankyou__step-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-color);
}
.thankyou__step-content p {
  color: #666;
  line-height: 1.6;
}
.thankyou__details {
  background: #f8fafc;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e2e8f0;
}
.thankyou__details-grid {
  display: grid;
  gap: 20px;
}
.thankyou__detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}
.thankyou__detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.thankyou__detail-icon svg {
  width: 20px;
  height: 20px;
}
.thankyou__detail-content h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.thankyou__detail-content p {
  color: var(--dark-color);
  line-height: 1.5;
}
.thankyou__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.thankyou__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 250px;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 160px;
  justify-content: center;
}
.thankyou__btn svg {
  width: 18px;
  height: 18px;
}
.thankyou__btn--primary {
  background: var(--accent-color);
  color: white;
  border: 1px solid var(--accent-color);
}
.thankyou__btn--primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}
.thankyou__btn--secondary {
  background: transparent;
  color: var(--dark-color);
  border: 1px solid #d1d5db;
}
.thankyou__btn--secondary:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
  transform: translateY(-2px);
}
@media screen and (max-width: 768px) {
  .thankyou__title {
    font-size: 2rem;
  }
  .thankyou__step {
    flex-direction: column;
    text-align: center;
  }
  .thankyou__actions {
    flex-direction: column;
    align-items: center;
  }
  .thankyou__btn {
    width: 100%;
    max-width: 280px;
  }
}
.mq-notify {
  background-color: var(--dark-color);
}
.mq-notify__text {
  color: var(--light-color);
  padding: 8px 0;
  font-size: 16px;
  font-weight: 300;
}

.icza-rating {
  background-color: var(--light-color);
  padding: 30px 0;
  max-width: 960px;
  border-radius: 30px;
  margin: -36px auto 0;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .icza-rating {
    margin-top: 0;
  }
}
.icza-rating__cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .icza-rating__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    justify-self: center;
  }
}
@media screen and (max-width: 1200px) {
  .icza-rating__card {
    width: 100%;
    max-width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
.icza-rating__card:nth-child(2) img,
.icza-rating__card:nth-child(3) img {
  max-width: 24px;
  width: 100%;
}
.icza-rating__card:nth-child(1) svg {
  color: #2962ff;
}
.icza-rating__card:nth-child(4) svg {
  color: #01b57a;
}
.icza-rating__head {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.icza-rating__head img {
  height: 26px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 1200px) {
  .icza-rating__head span {
    font-size: 14px;
  }
}
.icza-rating__content {
  display: flex;
  align-items: center;
  gap: 3px;
}
.icza-rating__content span {
  margin-right: 8px;
  font-weight: 700;
  font-size: 24px;
}
@media screen and (max-width: 1200px) {
  .icza-rating__content span {
    font-size: 18px;
  }
}
.icza-rating__content svg {
  color: #ff9f29;
}
@media screen and (max-width: 1200px) {
  .icza-rating__content svg {
    width: 16px;
  }
}

.card {
  position: fixed;
  z-index: 20;
  bottom: 20px;
  right: 20px;
  width: 300px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  gap: 13px;
  overflow: hidden;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.062);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 0px 18px #06a18f;
}
@media screen and (max-width: 480px) {
  .card {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    padding: 15px 20px;
    bottom: 15px;
  }
}

#cookieSvg {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

#cookieSvg g path {
  fill: rgb(227, 110, 110);
  transition: fill 0.3s ease;
}

.mq-cookieHeading {
  font-size: 1.2em;
  font-weight: 800;
  text-align: center;
}

.mq-cookieDescription {
  text-align: center;
  font-size: 0.7em;
  font-weight: 600;
}

.mq-buttonContainer {
  display: flex;
  gap: 20px;
  flex-direction: row;
}

.mq-acceptButton {
  width: 80px;
  height: 30px;
  background-color: #7b57ff;
  transition: all 0.3s ease;
  border: none;
  color: rgb(241, 241, 241);
  cursor: pointer;
  font-weight: 600;
  border-radius: 20px;
  font-size: 12px;
}

.mq-declineButton {
  width: 80px;
  font-size: 9px;
  height: 30px;
  background-color: rgb(218, 218, 218);
  transition: all 0.3s ease;
  color: rgb(46, 46, 46);
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 20px;
}

.mq-declineButton:hover {
  background-color: var(--warning-color);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(233, 69, 96, 0.3);
}

.mq-acceptButton:hover {
  background-color: #9173ff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(123, 87, 255, 0.3);
}

/* icza- стили для баннера куки */
.icza-cookieHeading {
  font-size: 1.2em;
  font-weight: 800;
  text-align: center;
}

.icza-cookieDescription {
  text-align: center;
  font-size: 0.7em;
  font-weight: 600;
}

.icza-buttonContainer {
  display: flex;
  gap: 20px;
  flex-direction: row;
}

.icza-acceptButton {
  width: 80px;
  height: 30px;
  background-color: #7b57ff;
  transition: all 0.3s ease;
  border: none;
  color: rgb(241, 241, 241);
  cursor: pointer;
  font-weight: 600;
  border-radius: 20px;
  font-size: 12px;
}

.icza-declineButton {
  width: 80px;
  font-size: 9px;
  height: 30px;
  background-color: rgb(218, 218, 218);
  transition: all 0.3s ease;
  color: rgb(46, 46, 46);
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 20px;
}

.icza-declineButton:hover {
  background-color: var(--warning-color);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(233, 69, 96, 0.3);
}

.icza-acceptButton:hover {
  background-color: #9173ff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(123, 87, 255, 0.3);
}

/* Медиа-запросы для icza- стилей баннера куки */
@media screen and (max-width: 480px) {
  .icza-cookieHeading {
    font-size: 1em;
  }
  
  .icza-cookieDescription {
    font-size: 0.6em;
  }
  
  .icza-buttonContainer {
    gap: 15px;
  }
  
  .icza-acceptButton,
  .icza-declineButton {
    width: 70px;
    height: 28px;
    font-size: 0.7em;
  }
}

/*  COMPONENTS  */ /*# sourceMappingURL=main.css.map */
