/* === Сброс стилей === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Основные цвета */
  --color-one: #FF9600;                         /* основной акцент */
  --color-two: #6155F5;                         /* дополнительный акцент */
  --color-three: #CAE05C;                       /* третий акцент */
  --color-four: #242a39;                        /* четвертый акцент */
  --color-background: #ffffff;                  /* фон — основной */
  --color-text: #000000;                        /* основной текст */
  --color-text-light: #ffffff;                  /* основной текст — белый */
  --color-other: #ffb81e;                       /* дополнительный цвет */

  /* Специальные состояния */
  --color-success: #10B981;      /* успех / действие */
  --color-error: #EF4444;        /* ошибка */
  --color-warning: #F59E0B;      /* предупреждение */
}

/* === Общие стили для body === */
body {
  font-family: 'Helvetica Neue';
  color: var(--color-text);
  background: var(--color-background);
  background-position: 100%;
  animation: gradientBG 15s ease infinite;
  min-height: 100%;
  min-width: auto;
  scroll-behavior: smooth;
  margin: auto;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  max-width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden;
}

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

}

/* === Шапка === */
#home-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1.5rem;
  max-height: 50px;
}

.logo-container {
  display: flex;
  align-items: center;
}

#logo {
  align-content: center;
  width: 47px;
  height: auto;
}

#home-header a {
  width: 47px;
  height: 47px;
}

#home-header h1 {
  font-size: 2.7rem;
  font-weight: 750;
  color: var(--color-four);
  margin: 0px 0px 0px 10px;
}

#home-header nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

#home-header nav a {
  font-weight: 500;
  color: #4b5563;
  transition: color 0.2s;
}

#home-header nav a:hover {
  color: var(--color-text);
}

.version {
  display: inline-block;
  margin: 0;
  padding: 0px 6px;
  color: var(--color-text-light);
  background-color: #32cd32;
  border: 3px solid #32cd32;
  border-radius: 20px;
  font-weight: bold;
  text-align: center;
  font-size: small;
}

.liquid-glass-container {
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  z-index: 1000;
  border-radius: 50px;
  overflow: hidden;
  padding: 10px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.20);
  max-width: 1250px;
  margin: 0 auto;
}

.liquid-glass-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px) saturate(1.1) contrast(1.05) hue-rotate(1deg);
  -webkit-backdrop-filter: blur(4px) saturate(1.1) contrast(1.05) hue-rotate(1deg);
  box-shadow:
    inset 6px 6px 12px rgba(153, 192, 255, 0.05),
    inset 1px 1px 3px rgba(195, 218, 255, 0.1),
    inset -6px -6px 12px rgba(229, 253, 190, 0.05),
    inset -1px -1px 10px rgba(247, 255, 226, 0.1);
  filter: url(#liquid-glass-filter);
  z-index: 1;
  pointer-events: none;
}

.liquid-glass-content {
  position: relative;
  z-index: 2;
  color: var(--color-text-light);
}

section {
  display: block;
  padding: 6rem 0;
}

/* Контент внутри */
.hero-content, .stats-content, .how-it-works-content {
  padding: 4rem 2rem; /* 64px внутренние */
  min-height: 500px;  /* Минимум контента */
  max-width: 1200px;
  margin: 0 auto;
}


.container {
  padding: 0 2rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

/* === Геро-секция === */
.hero-block {
  position: relative;
  padding: 100px 48px 48px 48px;
  width: 100%;
  margin: 0;
  background-color: var(--color-background);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  max-height: 600px;
  margin: 0 auto;
}

.hero-text h2 {
  font-size: 3.5rem;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 125%;
  min-width: 150%;
}

.hero-text h3 {
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 115%;
}

.border-line{
  padding-left: 15px;
  border-left: 7px solid var(--color-text);
  margin-bottom: 50px;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--color-two);
  border-radius: 10px;
  margin-bottom: 4%;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.2s;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-one);
  width: 55%;
  color: var(--color-text-light);
}

.btn-secondary {
  background-color: var(--color-text-light);
  border: 3px solid var(--color-text);
  width: 55%;
  color: var(--color-text);
}

.btn:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* === Инфографика === */
.hero-visual img{
  max-height: 500px;
}

.hero-graphic {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* === Статистика === */
.stats-block {
  padding: 6rem 0;
  width: 100%;
  margin: 0;
  background-color: var(--color-background);
}

.stats-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  max-height: 600px;
  margin: 0 auto;
  background-color: var(--color-background);
  border-radius: 50px;
  padding: 0 2rem;
}

.stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 200px;
}

.stats .number {
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 125%;
  min-width: 150%;
  text-align: center;
  justify-content: center;
}

/* === Как это работает? === */
.how-it-works-block {
  padding: 48px;
  width: 100%;
  margin: 0;
  background-color: var(--color-background);
}

.how-it-works-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  max-height: 600px;
  margin: 0 auto;
  background-color: var(--color-one);
  border: 60px solid var(--color-one);
  border-radius: 50px;
}

.how-it-works-text h2 {
  font-size: 2.8rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 125%;
  min-width: 150%;
}

.how-it-works-text h3 {
  font-size: 1.5rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 115%;
}

.how-it-works-list {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
  width: 100%;
}


.item {
  display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0;
}

.number-li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.number-li .number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 40px;
  background-color: var(--color-two);
  color: var(--color-one);
  border: 30px solid var(--color-two);
  border-radius: 35px;
  max-width: 45px;
  max-height: 45px;
}

.number-line {
  background-color: var(--color-two);
  border: 5px solid var(--color-two);
  border-radius: 10px;
  width: 150px;
  margin-left: 20px;
}

.text-li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.text-li div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: var(--color-text-light);
}

/* === Преимущества === */
.advantages-block {
  padding: 48px 250px;
  width: 100%;
  margin: 0;
  background-color: var(--color-background);
}

.advantages-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  max-height: 600px;
  margin: 0 auto;
  background-color: var(--color-background);
  border-radius: 50px;
}

.advantages {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 200px;
}

.advantages .number {
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 125%;
  min-width: 150%;
  text-align: center;
  justify-content: center;
}

/* === О исполнителях === */
.verified-frelancers-block {
  padding: 100px 48px 48px 48px;
  width: 100%;
  margin: 0;
  background-color: var(--color-background);
}

.verified-frelancers-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  max-height: 600px;
  margin: 0 auto;
  background-color: var(--color-one);
  border: 80px solid var(--color-one);
  border-radius: 50px;
}

.verified-frelancers-text img{
  max-width: 30px;
}

.verified-frelancers-text h2 {
  font-size: 3.5rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 125%;
  min-width: 150%;
}

.verified-frelancers-text h3 {
  font-size: 1.5rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 115%;
}

/* === Вопросы и ответы === */
.faq-block {
  padding: 48px 250px;
  width: 100%;
  margin: 0;
  background-color: var(--color-background);
}

.faq-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  max-height: 600px;
  margin: 0 auto;
  background-color: var(--color-background);
  border-radius: 50px;
}

.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 200px;
}

.faq .number {
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 125%;
  min-width: 150%;
  text-align: center;
  justify-content: center;
}

/* === Поддержка === */
.support-block {
  padding: 100px 48px 48px 48px;
  width: 100%;
  margin: 0;
  background-color: var(--color-background);
}

.support-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  max-height: 600px;
  margin: 0 auto;
  background-color: var(--color-one);
  border: 80px solid var(--color-one);
  border-radius: 50px;
}

.support-text h2 {
  font-size: 3.5rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 125%;
  min-width: 150%;
}

.support-text h3 {
  font-size: 1.5rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 115%;
}

/* === Футер === */
footer {
  text-align: center;
  padding: 2rem;
  color: #94a3b8;
  font-size: 0.9rem;
  border-top: 1px solid #e2e8f0;
  margin-top: 2rem;
}

