@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bad+Script&family=Prata&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bad+Script&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Prata&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

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

li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #0b1222;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Навігація */
nav {
  background: rgb(28, 26, 34);
  padding: 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav .container {
  background-color: rgb(28, 26, 34);
  font-family: "Prata", serif;
  font-weight: 400;
  overflow: hidden;
  position: relative;
  height: 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 9%;
  width: 83%;
  height: 1px;
  background-color: #a09898;
}

nav .logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f8f8f8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav .logo:hover .logo-top {
  transform: translateY(-40px);
  transition: 0.3s;
}

nav .logo:hover .logo-bottom {
  transform: translateY(-29px);
  transition: 0.3s;
}

.logo-top {
  transition: 0.7s;
  position: absolute;
  top: 0;
  left: 0;
}

.logo-bottom {
  transition: 0.8s;
  position: absolute;
  top: 32px;
  left: 0;
}

nav .nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  font-family: "Inter", sans-serif;
}

nav .nav-menu li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.5rem;
  transition: color 0.3s ease;
}

nav .nav-menu li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #facc15;
  transition: width 0.3s ease;
}

nav .nav-menu li a:hover::after {
  width: 100%;
}

nav .nav-menu li a:hover {
  color: #facc15;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: relative;
  z-index: 101; /* Вище за меню */
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  position: relative;
}

.menu-toggle span::before {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background-color: #facc15;
  left: 0;
  top: 0;
  transition: width 0.3s ease;
}

.menu-toggle:hover span::before {
  width: 100%;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: #facc15;
}

.menu-toggle.active span:nth-child(1)::before {
  width: 0;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background-color: #facc15;
}

.menu-toggle.active span:nth-child(3)::before {
  width: 0;
}

/* Секція цін */
.pricing-section {
  background-color: rgb(28, 26, 34);
  color: #ffffff;
  padding: 6rem 1rem;
  text-align: center;
}

.pricing-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #facc15;
}

.pricing-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #d1d5db;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background-color: #000000;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: opacity 1s ease-out, transform 1s ease-out;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card[data-direction=left] {
  opacity: 0;
  transform: translateX(-50px);
}

.pricing-card[data-direction=right] {
  opacity: 0;
  transform: translateX(50px);
}

.pricing-card.visible {
  opacity: 1;
  transform: translateX(0);
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #facc15;
  margin-bottom: 0.5rem;
  text-align: center;
}

.pricing-card .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-align: center;
}

.pricing-card p {
  font-size: 1rem;
  color: #d1d5db;
  text-align: justify;
  flex-grow: 1;
  margin-bottom: 0.5rem;
  padding: 0 10px;
  min-height: 120px;
  display: flex;
  align-items: center;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Футер */
footer {
  background-color: rgb(28, 26, 34);
  color: #d1d5db;
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

footer p {
  font-size: 0.9rem;
}

/* Адаптивність для малих екранів */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  nav .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background: rgb(28, 26, 34);
    flex-direction: column;
    padding: 2rem 1rem;
    box-shadow: 3px 0 6px rgba(0, 0, 0, 0.3);
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  }
  nav .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  nav .nav-menu li {
    margin: 1rem 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  nav .nav-menu.active li {
    opacity: 1;
    transform: translateX(0);
  }
  nav .nav-menu li:nth-child(1) {
    transition-delay: 0.1s;
  }
  nav .nav-menu li:nth-child(2) {
    transition-delay: 0.2s;
  }
  nav .nav-menu li:nth-child(3) {
    transition-delay: 0.3s;
  }
  nav .nav-menu li:nth-child(4) {
    transition-delay: 0.4s;
  }
  nav .nav-menu li:nth-child(5) {
    transition-delay: 0.5s;
  }
  nav .nav-menu li:nth-child(6) {
    transition-delay: 0.6s;
  }
  nav .nav-menu li:nth-child(7) {
    transition-delay: 0.7s;
  }
  nav .nav-menu li a {
    font-size: 1.1rem;
    padding: 0.5rem;
    display: block;
  }
  .pricing-section h2 {
    font-size: 2rem;
  }
  .pricing-section p {
    font-size: 1rem;
  }
  .pricing-card {
    min-height: 350px;
  }
  .pricing-card p {
    min-height: 150px;
    padding: 0 5px;
  }
}
/* Навігація */
nav {
  background: rgb(28, 26, 34);
  padding: 1rem; /* Зменшено з 1.5rem для компактності */
  position: sticky;
  top: 0;
  z-index: 100;
}

nav .container {
  background-color: rgb(28, 26, 34);
  font-family: "Prata", serif;
  font-weight: 400;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Дозволяємо перенос елементів */
  padding: 0 1rem;
  height: auto; /* Видалено фіксовану висоту 40px */
}

nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 9%;
  width: 83%;
  height: 1px;
  background-color: #a09898;
}

/* Логотип */
nav .logo {
  font-size: clamp(1.2rem, 3vw, 1.6rem); /* Адаптивний розмір шрифту */
  font-weight: 700;
  color: #f8f8f8;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

nav .logo:hover .logo-top {
  transform: translateY(-40px); /* Без змін */
  transition: 0.3s;
}

nav .logo:hover .logo-bottom {
  transform: translateY(-29px); /* Без змін */
  transition: 0.3s;
}

.logo-top {
  transition: 0.7s;
  position: absolute;
  top: 0;
  left: 0;
  font-size: inherit; /* Масштабується разом з .logo */
}

.logo-bottom {
  transition: 0.8s;
  position: absolute;
  top: clamp(1.6rem, 4vw, 2rem); /* Адаптивне позиціонування */
  left: 0;
  font-size: inherit; /* Масштабується разом з .logo */
}

/* Меню */
nav .nav-menu {
  list-style: none;
  display: flex;
  gap: clamp(0.8rem, 2vw, 1.5rem); /* Адаптивний проміжок */
  font-family: "Inter", sans-serif;
}

nav .nav-menu li a {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(0.8rem, 2vw, 0.95rem); /* Адаптивний розмір шрифту */
  font-weight: 500;
  position: relative;
  padding-bottom: 0.5rem;
  transition: color 0.3s ease;
}

nav .nav-menu li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #facc15;
  transition: width 0.3s ease;
}

nav .nav-menu li a:hover::after {
  width: 100%;
}

nav .nav-menu li a:hover {
  color: #facc15;
}

/* Бургер-меню */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: relative;
  z-index: 101;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  position: relative;
}

.menu-toggle span::before {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background-color: #facc15;
  left: 0;
  top: 0;
  transition: width 0.3s ease;
}

.menu-toggle:hover span::before {
  width: 100%;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: #facc15;
}

.menu-toggle.active span:nth-child(1)::before {
  width: 0;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background-color: #facc15;
}

.menu-toggle.active span:nth-child(3)::before {
  width: 0;
}

/* Адаптивність для малих екранів */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  nav .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background: rgb(28, 26, 34);
    flex-direction: column;
    padding: 2rem 1rem;
    box-shadow: 3px 0 6px rgba(0, 0, 0, 0.3);
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  }
  nav .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  nav .nav-menu li {
    margin: 1rem 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  nav .nav-menu.active li {
    opacity: 1;
    transform: translateX(0);
  }
  nav .nav-menu li:nth-child(1) {
    transition-delay: 0.1s;
  }
  nav .nav-menu li:nth-child(2) {
    transition-delay: 0.2s;
  }
  nav .nav-menu li:nth-child(3) {
    transition-delay: 0.3s;
  }
  nav .nav-menu li:nth-child(4) {
    transition-delay: 0.4s;
  }
  nav .nav-menu li:nth-child(5) {
    transition-delay: 0.5s;
  }
  nav .nav-menu li:nth-child(6) {
    transition-delay: 0.6s;
  }
  nav .nav-menu li:nth-child(7) {
    transition-delay: 0.7s;
  }
  nav .nav-menu li a {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem); /* Адаптивний шрифт для бургер-меню */
    padding: 0.5rem;
    display: block;
  }
  nav .logo {
    font-size: clamp(1rem, 2.8vw, 1.3rem); /* Менший логотип */
  }
  .logo-bottom {
    top: clamp(1.4rem, 3.5vw, 1.8rem); /* Адаптивне позиціонування */
  }
}
/* Дуже малі екрани (до 480px) */
@media (max-width: 480px) {
  nav .logo {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem); /* Ще менший логотип */
  }
  .logo-bottom {
    top: clamp(1.3rem, 3.2vw, 1.6rem); /* Ще компактніше позиціонування */
  }
  nav .nav-menu {
    width: 200px; /* Менша ширина меню */
  }
  nav .nav-menu li a {
    font-size: clamp(0.7rem, 2vw, 0.9rem); /* Менший шрифт у бургер-меню */
  }
}
nav .logo-bottom {
  transition: 0.8s;
  position: absolute;
  top: clamp(1.6rem, 4vw, 2.1rem); /* Адаптивне позиціонування */
  left: 0;
  font-size: inherit; /* Логотипи масштабуються разом з .logo */
}

nav .logo:hover .logo-top {
  transform: translateY(-40px); /* Без змін */
  transition: 0.3s;
}

nav .logo:hover .logo-bottom {
  transform: translateY(-29px); /* Без змін */
  transition: 0.3s;
}

@media (max-width: 768px) {
  .img_an-right {
    border: 1px solid #000;
    min-width: 300px;
  }
  .img_anim-4 img {
    width: 100%;
    height: 70%;
  }
  .container ul {
    display: block;
    top: 10%;
    font-size: 0px;
  }
  .lang-switch ::before {
    content: "";
    background: #1C1A22;
    width: 20px;
    height: 20px;
  }
  /* Перемикач мов */
  .lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .lang-switch a {
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
    transition: color 0.3s ease;
  }
  .lang-switch a:hover {
    color: #facc15;
  }
  .lang-switch a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3.2rem;
    height: 1.2rem;
    background-size: cover;
    background-position: center;
  }
  .lang-switch a[href="index.html"]::before {
    background-image: url("../img/flags/ua.png");
  }
  .lang-switch a[href="index_en.html"]::before {
    background-image: url("../img/flags/eng.png");
  }
  .lang-switch a[href="index_cz.html"]::before {
    background-image: url("../img/flags/cz.png");
  }
}
/* Секція цін */
.pricing-section {
  background-color: rgb(28, 26, 34);
  color: #ffffff;
  padding: 4rem 1rem;
  text-align: center;
}

.pricing-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #facc15;
}

.pricing-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #d1d5db;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Два блоки в ряд для великих екранів */
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background-color: rgba(25, 23, 31, 0.711);
  padding: 1.5rem;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: visible;
  box-shadow: 0 0 15px rgba(250, 204, 21, 0.3), 0 0 25px rgba(75, 108, 183, 0.2);
}

.pricing-card[data-direction=left] {
  opacity: 0;
  transform: translateX(-50px);
}

.pricing-card[data-direction=right] {
  opacity: 0;
  transform: translateX(50px);
}

.pricing-card.visible {
  opacity: 1;
  transform: translateX(0);
}

.pricing-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #facc15;
  margin-bottom: 0.8rem;
  text-align: center;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card .price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.8rem;
  text-align: center;
  min-height: 30px;
}

.pricing-card p {
  font-size: 0.95rem;
  color: #d1d5db;
  text-align: center;
  flex-grow: 1;
  margin-bottom: 0.8rem;
  padding: 0 8px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(122, 41, 215, 0.5), 0 0 30px rgba(75, 108, 183, 0.4);
}

/* Адаптивність для малих екранів */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Один блок у ряд для малих екранів */
  }
  .pricing-section h2 {
    font-size: 2rem;
  }
  .pricing-section p {
    font-size: 1rem;
  }
  .pricing-card {
    min-height: 320px;
    padding: 1.2rem;
  }
  .pricing-card p {
    min-height: 120px;
    padding: 0 5px;
  }
  .pricing-card h3 {
    font-size: 1.3rem;
    min-height: 40px;
  }
  .pricing-card .price {
    font-size: 1.5rem;
    min-height: 28px;
  }
}
@media (max-width: 769px) {
  .pricing-grid {
    grid-template-columns: 1fr; /* Один блок у колонці для великих екранів */
    max-width: 600px; /* Обмежуємо ширину для кращого вигляду колонок */
  }
}
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }
}
/* Секція цін */
.pricing-card {
  opacity: 0;
  transform: translateY(50px); /* Початкове зміщення вниз для анімації */
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}/*# sourceMappingURL=pricing.css.map */