* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 10px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  line-height: 1.5;
  background-color: var(--main-color);
  color: black;
}

ul,
ol {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  width: 100%;
  margin: 0 auto;
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-semibold);
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-medium);
}

p {
  font-weight: var(--font-weight-regular);
}

:root {
  --main-color: #ffffff;
  --second-color: #00a07d;
  --text-color: #0f2823;

  --font-size-main: 16px;
  --font-size-h1: 30px;
  --font-size-h2: 25px;
  --font-size-h3: 20px;

  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --border-radius: 5px;
  --box-shadow: 0 3px 3px rgba(146, 168, 22, 0.8);
}

.container {
  width: 375px;
  padding: 10px;
  margin: 0 auto;
}

/* Footer */
.footer-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  color: var(--second-color);
  background-color: var(--main-color);
}

.footer-logo-image {
  width: 90px;
}

.footer-nav > li > a {
  color: var(--second-color);
  transition: color 0.5s ease-in-out;
}

.footer-nav > li > a:hover,
.contact-address-info > p > a:hover {
  color: var(--text-color);
}

.policy-container {
  padding-top: 90px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text-color);
}

.page-contact-adr {
  display: none;
}

.terms-policy-contact-link {
  color: var(--second-color);
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.5s ease;
}

.terms-policy-contact-link:hover {
  border-bottom: 1px solid var(--second-color);
}

/* Animation */
.reveal-section {
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.6s ease-in-out;
}

.scale-up {
  transform: scale(1);
  opacity: 1;
}

/* Hero */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-slide-up {
  animation: fadeSlideUp 1s ease-out forwards;
}

.animate-delay-200 {
  animation-delay: 0.2s;
}

.animate-delay-400 {
  animation-delay: 0.4s;
}

.animate-delay-600 {
  animation-delay: 0.6s;
}

/* Blog Theme */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up .card-item {
  animation: fadeUp 0.6s ease-out forwards;
}

.section-write-topics.animate-fade-up {
  opacity: 1;
}

.animate-fade-up .card-item:nth-child(1) {
  animation-delay: 0.1s;
}

.animate-fade-up .card-item:nth-child(2) {
  animation-delay: 0.2s;
}

.animate-fade-up .card-item:nth-child(3) {
  animation-delay: 0.3s;
}

.animate-fade-up .card-item:nth-child(4) {
  animation-delay: 0.4s;
}

.animate-fade-up .card-item:nth-child(5) {
  animation-delay: 0.5s;
}

.animate-fade-up .card-item:nth-child(6) {
  animation-delay: 0.6s;
}

/* Voice */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fade-up 0.8s ease-out forwards;
}
@keyframes bounceSlow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.animate-bounce-slow {
  animation: bounceSlow 6s infinite ease-in-out;
}

@keyframes moveXSlow {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px);
  }
}

.animate-move-x-slow {
  animation: moveXSlow 10s infinite ease-in-out;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-up .quote-card {
  animation: fadeSlideUp 0.6s ease-out forwards;
}

.section-voices-uk.animate-slide-up {
  opacity: 1;
}

.animate-slide-up .quote-card:nth-child(1) {
  animation-delay: 0.1s;
}
.animate-slide-up .quote-card:nth-child(2) {
  animation-delay: 0.2s;
}
.animate-slide-up .quote-card:nth-child(3) {
  animation-delay: 0.3s;
}
.animate-slide-up .quote-card:nth-child(4) {
  animation-delay: 0.4s;
}
.animate-slide-up .quote-card:nth-child(5) {
  animation-delay: 0.5s;
}
.animate-slide-up .quote-card:nth-child(6) {
  animation-delay: 0.6s;
}

/* Contact section */
@keyframes float-slow {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse-slow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.1;
  }
}

.animate-float-slow {
  animation: float-slow 6s ease-in-out infinite;
}

.animate-pulse-slow {
  animation: pulse-slow 5s ease-in-out infinite;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
  }

  :root {
    --font-size-h1: 34px;
    --font-size-h2: 28px;
    --font-size-h3: 24px;
  }

  .container {
    width: 768px;
    padding: 15px;
  }

  /* Footer */
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }
}

@media screen and (min-width: 1024px) {
  body {
    font-size: 20px;
  }

  :root {
    --font-size-h1: 36px;
    --font-size-h2: 30px;
    --font-size-h3: 26px;
  }

  .container {
    width: 1024px;
    padding: 20px;
  }

  /* Footer */
  .footer-container {
    gap: 30px;
    justify-content: start;
  }
}

@media screen and (min-width: 1440px) {
  body {
    font-size: 22px;
  }

  :root {
    --font-size-h1: 40px;
    --font-size-h2: 34px;
    --font-size-h3: 30px;
  }

  .container {
    width: 1440px;
    padding: 25px;
  }

  .logo-image {
    height: 60px;
  }
}

.policy-container {
  padding-top: 90px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-container h1,
.policy-container h2 {
  font-size: x-large;
  font-weight: bold;
}

/* Основные настройки хедера */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(9, 9, 11, 0.8); /* zinc-950 с прозрачностью */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(39, 39, 42, 1); /* zinc-900 */
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo img {
  height: 32px;
  width: auto;
  filter: grayscale(1) brightness(2);
  transition: transform 0.3s ease;
}

.header-logo:hover img {
  transform: scale(1.05);
}

/* Десктопная навигация */
.desktop-nav {
  display: none; /* Прячем на мобильных */
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 40px;
  }
}

.desktop-nav a {
  color: #a1a1aa; /* zinc-400 */
  text-decoration: none;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-style: italic;
  transition: color 0.3s ease;
}

.desktop-nav a:hover {
  color: #018d76; /* amber-500 */
}

.nav-cta {
  padding: 8px 24px;
  border: 1px solid rgba(11, 245, 206, 0.5);
  border-radius: 9999px;
  color: #018d76 !important;
}

.nav-cta:hover {
  background: #018d76;
  color: #000 !important;
}

/* Кнопка Бургера */
.burger-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 768px) {
  .burger-btn {
    display: none;
  }
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 1px;
  background: #018d76;
}

/* Полноэкранное меню */
.full-screen-menu {
  position: fixed;
  top: 0;
  right: -100%; /* Полностью скрыто справа */
  width: 100%;
  height: 100vh;
  background: #09090b; /* zinc-950 */
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.full-screen-menu.active {
  right: 0; /* Выезжает на весь экран */
}

.close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #018d76;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.close-btn span {
  font-size: 24px;
  font-weight: 300;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-link {
  color: #fff;
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.menu-divider {
  width: 40px;
  height: 1px;
  background: #27272a;
  margin: 16px 0;
}

.menu-contact-label {
  color: #52525b;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 700;
}

.menu-phone {
  color: #a1a1aa;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
}
