/* ========== CSS Variables ========== */
:root {
    --font-main: 'Roboto', 'Segoe UI', sans-serif;
    --font-size-base: 16px;
    --color-bg: #0D0D0D;
    --color-text: #F5F5F5;
    --color-accent: #C62828;
    --color-muted: #999999;
    --container-width: 1200px;
    --gap: 32px;
    --line-height: 1.6;
    --transition: 0.3s ease;
  }
  
  /* ========== Reset ========== */
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: var(--font-main);
    font-size: var(--font-size-base);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: var(--line-height);
    -webkit-font-smoothing: antialiased;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  a {
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
  }
  a:hover {
    color: var(--color-accent);
  }
  
  ul,
  ol {
    list-style: none;
  }
  
  /* ========== Layout ========== */
  .wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  .container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--gap);
  }
  
  /* ========== Header ========== */
  .site-header {
    background-color: #121212;
    padding: var(--gap) 0;
    border-bottom: 1px solid #2a2a2a;
  }
  .site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-center {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  /* ========== Footer ========== */
  .site-footer {
    background-color: #121212;
    padding: var(--gap) 0;
    border-top: 1px solid #2a2a2a;
    margin-top: auto;
  }
  .site-footer .container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--color-muted);
  }

  .footer-column {
    flex: 1;
    min-width: 200px;
  }

  .footer-title {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
  }

  .footer-nav,
  .footer-contact {
    list-style: none;
    padding: 0;
  }

  .footer-nav li,
  .footer-contact li {
    margin-bottom: 8px;
  }

  .footer-nav a,
  .footer-contact a {
    color: var(--color-muted);
    text-decoration: none;
  }

  .footer-nav a:hover,
  .footer-contact a:hover {
    color: var(--color-accent);
  }
  
  /* ========== Typography ========== */
  h1, h2, h3, h4 {
    font-weight: 500;
    margin-bottom: 0.5em;
    color: var(--color-text);
  }
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  p {
    margin-bottom: 1em;
    color: var(--color-text);
  }
  
  /* ========== Responsive ========== */
  @media (max-width: 768px) {
    :root {
      --gap: 20px;
      --font-size-base: 15px;
    }
  
    .site-header .container,
    .site-footer .container {
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }
  }

  /* ========== Header Layout ========== */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
  }
  
  .header-left {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .logo {
    width: 40px;
    height: auto;
  }
  .company-name {
    font-size: 1.2rem;
    font-weight: 500;
    white-space: nowrap;
  }
  
  /* ========== Навигация ========== */
  .site-nav .nav-list {
    display: flex;
    gap: 24px;
  }
  .site-nav .nav-list a {
    color: var(--color-text);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .site-nav .nav-list a:hover {
    color: var(--color-accent);
  }
  
  /* ========== Телефон и бургер на desktop ========== */
.phone {
    font-weight: 500;
    font-size: 1rem;
  }
  .burger {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
  }

.header-right .desktop-phone {
  display: block;
}

  /* Скрываем мобильный телефон на десктопе */
  .mobile-phone {
    display: none;
  }

  /* ========== Mobile styles ========== */
  @media (max-width: 768px) {
    .header-container {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  
    .header-left {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .header-center {
      justify-content: flex-start;
    }
  
    .burger {
      display: inline-block;
    }
  
    .site-nav {
      display: none;
      width: 100%;
      margin-top: 12px;
    }
  
    .site-nav.active {
      display: block;
    }
  
    .site-nav .nav-list {
      flex-direction: column;
      gap: 12px;
      padding: 12px 0;
      border-top: 1px solid #2a2a2a;
    }
  
    .mobile-phone {
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid #2a2a2a;
    }
  
    .mobile-phone .phone {
      display: block;
      text-align: left;
      font-weight: 500;
      font-size: 1rem;
    }

    .header-right .desktop-phone {
      display: none;
    }

    .mobile-phone {
      display: block;
    }

    .hero-content {
      text-align: left;
    }
  }

.footer-bottom {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--color-muted);
}

.hero {
    position: relative;
    background-image: url('img/home_screen_1_1.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
  }
  
  .hero-overlay {
    background-color: rgba(0, 0, 0, 0.785);
    width: 100%;
    padding: var(--gap) 0;
  }
  
  .hero-content {
    text-align: left;
    max-width: 800px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-note {
    margin-top: 2rem;
    font-weight: 500;
    color: var(--color-accent);
    font-size: 1.1rem;
  }

  .hero-note-list {
    margin-top: 2rem;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--color-accent);
    list-style: none;
    padding-left: 0;
  }

  .hero-note-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 1.8rem;
    }
  
    .hero-lead,
    .hero-desc,
    .hero-note {
      font-size: 1rem;
    }
  }
/* ======= Intro Section ======= */
.intro {
  background-color: #121212;
  color: var(--color-text);
  padding: 80px 0;
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
}

@media (max-width: 768px) {
  .intro {
    padding: 60px 0;
  }

  .intro-content {
    padding: 0 var(--gap);
    text-align: left;
    gap: 20px;
  }

  .intro-content p {
    font-size: 1rem;
  }
}

.services-section {
    background-color: #0F1114;
    padding: 80px 0;
    color: var(--color-text);
  }
  
  .services-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-bottom: 48px;
    margin-bottom: 48px;
    border-bottom: 1px solid #2a2a2a;
  }
  
  .services-image {
    flex: 1;
    min-width: 300px;
  }
  .services-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
  }
  
  .services-content {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .service-benefits {
    list-style: none;
    padding-left: 0;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .service-result {
    font-weight: 600;
    color: var(--color-accent);
    margin-top: 16px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .services-container {
      flex-direction: column;
      gap: 24px;
    }
  
    .services-content {
      text-align: left;
    }
  }

  

.about-intro {
  background-color: #121212;
  color: var(--color-text);
  padding: 80px 0;
}

.about-reports {
  background-color: #0F1114;
  color: var(--color-text);
  padding: 80px 0;
}

.report-years {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding: 0;
  list-style: none;
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-accent);
}

.report-documents {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 32px;
}

.license-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 4px;
  border: 1px solid #333;
}
.contact-section {
  background-color: #121212;
  color: var(--color-text);
  padding: 80px 0;
}

.contact-section .contact-info p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.contact-section .contact-info a {
  color: var(--color-accent);
  text-decoration: none;
}

.contact-section .contact-info a:hover {
  text-decoration: underline;
}

.media-section {
  background-color: #121212;
  color: var(--color-text);
  padding: 80px 0;
  text-align: center;
}

.video-wrapper {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 80vh;
}