/*!***********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[7].use[3]!./src/components/Footer/Footer.module.css ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************/
.Footer_footer__4vzqH {
  background-color: var(--color-text);
  color: var(--color-white);
  padding: var(--spacing-2xl) 0 var(--spacing-md);
  margin-top: var(--spacing-3xl);
}

.Footer_content__a1cH7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: var(--spacing-xl);
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.Footer_section__N_45n {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.Footer_title__D7snR {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
}

.Footer_text__NYzmO {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.Footer_list___KSK1 {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.Footer_list___KSK1 a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.Footer_list___KSK1 a:hover {
  color: var(--color-primary);
}

.Footer_bottom__2dJjP {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .Footer_content__a1cH7 {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

/*!***********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[7].use[3]!./src/components/Header/Header.module.css ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************/
.Header_header__AF_3G {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 999;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.Header_header__AF_3G.Header_scrolled__Ik5rI {
  box-shadow: var(--shadow-lg);
  border-bottom-color: rgba(0, 188, 212, 0.1);
}

.Header_wrapper__Ys_tD {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.Header_logo__1FRrW a {
  font-size: 1.375rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.Header_logo__1FRrW a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.Header_logo__1FRrW a:hover::after {
  width: 100%;
}

.Header_nav__LVYU2 {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.Header_navList__YufAx {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
  align-items: center;
}

.Header_navItem__pb6e5 {
  position: relative;
}

.Header_navLink__bX76H {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  padding: 8px 0;
}

.Header_navLink__bX76H::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-secondary);
  transition: width 0.3s ease;
}

.Header_navLink__bX76H:hover {
  color: var(--color-secondary);
}

.Header_navLink__bX76H:hover::after {
  width: 100%;
}

/* Dropdown */
.Header_navItemDropdown__eE7De {
  position: relative;
}

.Header_dropdown__f5upL {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  box-shadow: 0 4px 16px rgba(33, 32, 31, 0.12);
  border-radius: var(--border-radius);
  padding: var(--spacing-sm);
  list-style: none;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1000;
}

.Header_navItemDropdown__eE7De:hover .Header_dropdown__f5upL {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.Header_dropdownLink__zc8kB {
  display: block;
  padding: var(--spacing-xs) var(--spacing-sm);
  color: var(--color-text);
  text-decoration: none;
  border-radius: 4px;
  transition: var(--transition);
}

.Header_dropdownLink__zc8kB:hover {
  background-color: var(--color-bg);
  color: var(--color-primary);
}

/* Burger */
.Header_burger__45vLT {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.Header_burger__45vLT span {
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  transition: var(--transition);
  transform-origin: center;
}

.Header_burgerOpen__RbwTe span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.Header_burgerOpen__RbwTe span:nth-child(2) {
  opacity: 0;
}

.Header_burgerOpen__RbwTe span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile */
@media (max-width: 768px) {
  .Header_burger__45vLT {
    display: flex;
  }

  .Header_nav__LVYU2 {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--spacing-3xl) var(--spacing-md) var(--spacing-md);
    transition: right 0.3s ease;
    box-shadow: -4px 0 16px rgba(33, 32, 31, 0.12);
    overflow-y: auto;
  }

  .Header_navOpen__inIop {
    right: 0;
  }

  .Header_navList__YufAx {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .Header_navItem__pb6e5 {
    width: 100%;
    border-bottom: 1px solid var(--color-bg);
  }

  .Header_navLink__bX76H {
    display: block;
    padding: var(--spacing-sm) 0;
  }

  .Header_dropdown__f5upL {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 var(--spacing-md);
    background: transparent;
  }

  .Header_dropdownLink__zc8kB {
    padding: var(--spacing-xs) 0;
  }

  .Header_nav__LVYU2 .Header_btn__25UxO {
    width: 100%;
    margin-top: var(--spacing-md);
  }
}

/*!***************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[7].use[3]!./src/components/TelegramButton/TelegramButton.module.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************************************/
.TelegramButton_telegramBtn__k2urU {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0088cc 0%, #00BCD4 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 32px rgba(0, 188, 212, 0.6);
  z-index: 998;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  opacity: 0;
  transform: translateY(100px);
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.TelegramButton_telegramBtn__k2urU.TelegramButton_visible__oQ2G6 {
  opacity: 1;
  transform: translateY(0);
  animation: TelegramButton_pulse__x41Xf 3s ease-in-out infinite;
}

.TelegramButton_telegramBtn__k2urU:hover {
  transform: scale(1.2) rotate(5deg);
  box-shadow: 0 16px 48px rgba(0, 188, 212, 0.8);
  border-color: rgba(255, 255, 255, 0.6);
}

.TelegramButton_telegramBtn__k2urU svg {
  width: 40px;
  height: 40px;
  margin-bottom: 4px;
}

.TelegramButton_text__4RJlR {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes TelegramButton_pulse__x41Xf {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(0, 188, 212, 0.6);
  }
  50% {
    box-shadow: 0 8px 32px rgba(0, 188, 212, 0.6), 0 0 0 20px rgba(0, 188, 212, 0.2), 0 0 0 40px rgba(0, 188, 212, 0.1);
  }
}

@media (max-width: 768px) {
  .TelegramButton_telegramBtn__k2urU {
    bottom: 20px;
    right: 20px;
    width: 68px;
    height: 68px;
  }

  .TelegramButton_telegramBtn__k2urU svg {
    width: 32px;
    height: 32px;
  }

  .TelegramButton_text__4RJlR {
    font-size: 0.6875rem;
  }
}

/*!********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[3]!./src/styles/globals.css ***!
  \********************************************************************************************************************************************************************************************************************************************************************/
:root {
  /* Цветовая палитра - спокойная + яркие акценты */
  --color-bg: #ebebeb70;
  --color-bg-secondary: #E8E4DF;
  --color-text: #21201F;
  --color-text-light: #6C757D;
  --color-primary: #FF632C;
  --color-primary-light: #FF7043;
  --color-secondary: #3FA9F5;
  --color-secondary-light: #5EBAFF;
  --color-accent: #FFC107;
  --color-success: #4CAF50;
  --color-white: #ffffff;
  
  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, #FF632C 0%, #FF7043 100%);
  --gradient-secondary: linear-gradient(135deg, #3FA9F5 0%, #5EBAFF 100%);
  --gradient-hero: linear-gradient(135deg, rgba(63, 169, 245, 0.05) 0%, rgba(255, 99, 44, 0.05) 100%);
  --gradient-card: linear-gradient(135deg, rgba(63, 169, 245, 0.03) 0%, rgba(255, 99, 44, 0.03) 100%);
  
  /* Умеренные отступы */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;
  --spacing-3xl: 80px;
  
  /* Более округлые формы */
  --border-radius: 16px;
  --border-radius-sm: 12px;
  --border-radius-lg: 24px;
  
  /* Плавные анимации */
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  
  --header-height: 80px;
  
  /* Тени для глубины */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
  
  /* Z-index слои */
  --z-header: 999;
  --z-telegram: 998;
  --z-modal: 9999;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 16px;
  padding-top: var(--header-height);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
}

/* Кнопки - более яркие и динамичные */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-size: 1.0625rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.btn--small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn.loading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

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

/* Section - умеренные отступы и креативные заголовки */
.section {
  padding: var(--spacing-2xl) 0;
  position: relative;
}

.section__title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: var(--color-text);
  position: relative;
  display: inline-block;
  width: 100%;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: var(--gradient-primary);
  border-radius: 10px;
}

@media (max-width: 768px) {
  .section__title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .section__title {
    font-size: 1.75rem;
  }
}

/* Анимации - расширенные */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.slide-in-left {
  animation: slideInFromLeft 0.8s ease forwards;
}

.slide-in-right {
  animation: slideInFromRight 0.8s ease forwards;
}

.scale-in {
  animation: scaleIn 0.6s ease forwards;
}

.rotate-in {
  animation: rotateIn 0.6s ease forwards;
}

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

