@font-face {
  font-family: 'FiraSans';
  src: url('../assets/fonts/FiraSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'FiraSans';
  src: url('../assets/fonts/FiraSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'FiraSans';
  src: url('../assets/fonts/FiraSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'FiraSans';
  src: url('../assets/fonts/FiraSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'FiraSans', sans-serif;
  color: #1e293b;
  font-size: 18px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  padding-top: 100px; /* Отступ для фиксированного хедера */
}
a {
    text-decoration: none;
}
/* Header Styles - FIXED */
.header {
   max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  padding: 16px 32px;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(37, 99, 235, 0.2);
  z-index: 1000;
}

.logo {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.logo_text {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.logo_subtitle {
  font-size: 11px;
  font-weight: 400;
  color: #3b82f6;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header_list {
  display: flex;
  gap: 40px;
  align-items: center;
  list-style: none;
}

.nav_link {
  font-weight: 500;
  font-size: 15px;
  color: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav_link:hover {
  color: #3b82f6;
}

.nav_link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: width 0.3s ease;
}

.nav_link:hover::after {
  width: 100%;
}

.header_call {
  background-color: #ef4444;
  color: white;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 500;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.header_call:hover {
  background-color: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 40px 0 60px 0;
   max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero_left, .hero_right {
  flex: 1;
}

/* Бейдж - КРАСНЫЙ цвет */
.hero_badge {
  display: inline-block;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.hero_title {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #ffffff;
  letter-spacing: -1px;
}

.hero_title_accent {
  color: #3b82f6;
  position: relative;
  display: inline-block;
}

.hero_title_accent::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(59, 130, 246, 0.3);
  z-index: -1;
}

.hero_description {
  font-weight: 300;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 32px;
  font-size: 16px;
}

.hero_list {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  list-style: none;
}

.hero_item {
  flex: 1;
  background: #1e293b;
  padding: 20px 16px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 1px solid #334155;
}

.hero_item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  border-color: #3b82f6;
  background: #1e2a3e;
}

.hero_item_icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.hero_text {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 400;
  line-height: 1.4;
}

.hero_value {
  font-weight: 700;
  font-size: 18px;
  color: #ef4444;
  margin-top: 4px;
  display: inline-block;
}

.hero_buttons {
  display: flex;
  gap: 16px;
}

.hero_btn_primary, .hero_btn_secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero_btn_primary {
  background: #2563eb;
  color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.hero_btn_primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.hero_btn_secondary {
  background: transparent;
  color: #3b82f6;
  border: 2px solid #3b82f6;
}

.hero_btn_secondary:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

/* Hero Right Side */
.hero_right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero_image_wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero_image_blur {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25), rgba(15, 23, 42, 0.1));
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

.hero_img {
  width: 420px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.hero_img:hover {
  transform: scale(1.02);
}

/* Footer */
.footer {
    background: #0f172a;
    padding: 60px 32px 30px;
    border-top: 1px solid #1e293b;
}

.footer_inner {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer_col {
    flex: 1;
    min-width: 160px;
}

.footer_logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer_desc {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.footer_col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer_col ul {
    list-style: none;
}

.footer_col li {
    margin-bottom: 10px;
}

.footer_col a, .footer_col li {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer_col a:hover {
    color: #ef4444;
}

.footer_bottom {
    max-width: 1360px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    color: #64748b;
}

.bitopiya {
    color: #ef4444;
    text-decoration: none;
}

.bitopiya:hover {
    text-decoration: underline;
}
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.burger span {
    width: 26px;
    height: 3px;
    background: white;
    display: block;
    transition: 0.3s;
}
.icon_social{
  width: 40px;
  height: 40px;
}
.social_link{
  width: 40px;
  height: 40px;
}
.social_link:hover{
  transform: scale(1.1);
}
.social_link:focus{
  opacity: 0.7;
}
.list_social{
  display: flex;
  gap: 15px;
}
/* Responsive */
@media (max-width: 1024px) {
  .hero_title {
    font-size: 38px;
  }
  
  .hero_img {
    width: 340px;
  }
  
  .header_list {
    gap: 24px;
  }
  .hero_btn_primary, .hero_btn_secondary{
    padding: 10px 20px;
    font-size: 14px;
  }
}
@media (max-width: 880px) {
.nav_link{
  font-size: 14px;
}
.header_list {
        gap: 15px;
    }
}
@media (max-width: 768px) { 
  .burger {
        display: flex;
        margin-left: 15px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #0f172a;
        display: flex;
        flex-direction: column;
        padding: 100px 30px;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    }
.header_call {
    margin-left: auto;
    padding: 8px 10px;
}
    .nav.active {
        right: 0;
    }

    .header_list {
        flex-direction: column;
        gap: 20px;
    }

    .nav_link {
        font-size: 18px;
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
  .hero {
    flex-direction: column;
    gap: 40px;
  }
  
  .hero_title {
    font-size: 32px;
  }
  
  .hero_list {
    flex-direction: column;
  }
  
  .hero_buttons {
    flex-direction: column;
  }
  
  .hero_btn_primary, .hero_btn_secondary {
    justify-content: center;
  }
  
  .hero_img {
    width: 280px;
  }
}
.catalog {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    align-items: stretch;
    gap: 50px;
}

.catalog_block {
    flex: 1;
}

.catalog_divider {
    width: 1px;
    background: #334155;
}

.catalog_header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.catalog_marker {
    width: 4px;
    height: 28px;
    background: #ef4444;
}

.catalog_marker_blue {
    background: #3b82f6;
}

.catalog_header h2 {
    font-size: 18px;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.catalog_grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.catalog_grid a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s;
    display: block;
    padding: 4px 0;
}

.catalog_grid a:hover {
    color: #ef4444;
    transform: translateX(6px);
}

.catalog_block:last-child .catalog_grid a:hover {
    color: #3b82f6;
}

.catalog_more {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.catalog_more:hover {
    color: #ef4444;
}

.catalog_block:last-child .catalog_more:hover {
    color: #3b82f6;
}

@media (max-width: 900px) {
    .catalog {
        flex-direction: column;
        gap: 40px;
    }
    
    .catalog_divider {
        display: none;
    }
}
.about {
   max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
    background: white;
    width: 100%;
    padding: 100px 20px;
}

.about_inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about_tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ef4444;
    display: inline-block;
    margin-bottom: 20px;
}

.about_inner h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: #111;
}

.about_accent {
    font-weight: 700;
    color: #111;
    border-bottom: 3px solid #ef4444;
}

.about_text {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px;
}

.about_stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 50px;
}

.about_stats > div {
    text-align: center;
}

.about_number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.about_label {
    font-size: 14px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about_btn {
    display: inline-block;
    color: #111;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 2px solid #111;
    padding-bottom: 6px;
    transition: all 0.2s;
}

.about_btn:hover {
    border-bottom-color: #ef4444;
    color: #ef4444;
}

@media (max-width: 768px) {
    .about {
        padding: 60px 20px;
    }
    
    .about_inner h2 {
        font-size: 32px;
    }
    
    .about_text {
        font-size: 16px;
    }
    
    .about_stats {
        gap: 40px;
        flex-wrap: wrap;
    }
    
    .about_number {
        font-size: 28px;
    }
    .footer_inner {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer_bottom {
        flex-direction: column;
        text-align: center;
    }
}
.contact {
    background: #1e293b;
    display: flex;
    padding: 80px 20px;
    gap: 60px;
    justify-content: center;
}

.contact_col {
    max-width: 400px;
    width: 100%;
}

.contact_col h3 {
    color: white;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.contact_items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact_items a, .contact_items span {
    color: #94a3b8;
    text-decoration: none;
    font-size: 18px;
    display: block;
}

.contact_items a:hover {
    color: white;
}

.contact_form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact_form input, .contact_form textarea {
    background: #0f172a;
    border: 1px solid #334155;
    padding: 14px;
    color: white;
    font-size: 15px;
    font-family: inherit;
}

.contact_form input:focus, .contact_form textarea:focus {
    outline: none;
    border-color: #ef4444;
}

.contact_form textarea {
    resize: vertical;
}

.contact_form button {
    background: #ef4444;
    color: white;
    border: none;
    padding: 14px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}

.contact_form button:hover {
    background: #dc2626;
} 


@media (max-width: 700px) {
    .contact {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        padding: 60px 20px;
    }
}
@media (max-width: 468px) {
.header_call{
  font-size: 14px;
}
.logo_text{
  font-size: 18px;
}
.logo_subtitle{
  font-size: 8px;
}
.header_call {
        padding: 7px 8px;
    }
    .callText{
      font-size: 12px;
    }
    .hero_image_blur{
      display: none;
    }
}
.top-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #111;
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(-10px);
    transition: 0.3s;
    z-index: 9999;
}

.top-message.show {
    opacity: 1;
    transform: translateY(0);
}