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

    :root {
      --primary: #1a1a1a;
      --secondary: #333;
      --accent: #2563EB;
      --bg: #F5F5F5;
      --white: #FFF;
      --border: #E5E5E5;
    }

    body {
      font-family: 'Georgia', 'Times New Roman', serif;
      color: var(--primary);
      background: var(--white);
      line-height: 1.7;
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      z-index: 1000;
      border-bottom: 1px solid var(--border);
    }

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 1.5rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: -0.5px;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    .nav-links {
      display: flex;
      gap: 3rem;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--secondary);
      font-size: 0.95rem;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      transition: color 0.3s;
    }

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

    .contact-button {
      padding: 0.75rem 1.5rem;
      background: var(--accent);
      color: var(--white);
      border: none;
      border-radius: 4px;
      font-size: 0.9rem;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      cursor: pointer;
      transition: background 0.3s;
    }

    .contact-button:hover {
      background: #1d4ed8;
    }

    /* Hero Section */
    .hero {
      height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2000&q=80') center/cover;
      color: var(--white);
    }

    .hero-content {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 3rem;
      width: 100%;
    }

    .hero-label {
      font-size: 0.875rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      opacity: 0.9;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    .hero h1 {
      font-size: clamp(3rem, 4vw, 5rem);
      font-weight: 300;
      letter-spacing: -1px;
      margin-bottom: 1.5rem;
      line-height: 1.2;
      max-width: 900px;
    }

    .hero-subtitle {
      font-size: 1.5rem;
      max-width: 700px;
      margin-bottom: 3rem;
      opacity: 0.95;
      line-height: 1.6;
    }

    .hero-stats {
      display: flex;
      gap: 4rem;
      margin-top: 4rem;
    }

    .hero-stat {
      border-left: 2px solid rgba(255, 255, 255, 0.3);
      padding-left: 1.5rem;
    }

    .hero-stat-number {
      font-size: 3rem;
      font-weight: 300;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      margin-bottom: 0.5rem;
    }

    .hero-stat-label {
      font-size: 0.95rem;
      opacity: 0.8;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    /* Container */
    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 3rem;
    }

    /* Intro Section */
    .intro {
      padding: 8rem 0;
      background: var(--white);

    }

    .intro-content {
      max-width: 1100px;
      margin: 0 auto;
    }

    .intro h2 {
      font-size: clamp(2.5rem, 4vw, 3.5rem);
      font-weight: 300;
      letter-spacing: -1px;
      line-height: 1.3;
      max-width: 1400px;
      margin: 0 auto 2rem auto;
    }

    .intro p {
      font-size: 1.25rem;
      color: var(--secondary);
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }

    /* Sectors Section */
    .sectors {
      padding: 8rem 0;
      background: var(--bg);
    }

    .section-header {
      margin-bottom: 5rem;
    }

    .section-label {
      font-size: 0.875rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    .section-header h2 {
      font-size: clamp(2.5rem, 4vw, 3.5rem);
      font-weight: 300;
      letter-spacing: -1px;
      margin-bottom: 1.5rem;
    }

    .section-header p {
      font-size: 1.25rem;
      color: var(--secondary);
      max-width: 700px;
    }

    .sector-item {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      margin-bottom: 6rem;
      align-items: center;
    }

    .sector-item:nth-child(even) {
      direction: rtl;
    }

    .sector-item:nth-child(even)>* {
      direction: ltr;
    }

    .sector-image {
      width: 100%;
      height: 500px;
      object-fit: cover;
      border-radius: 4px;
    }

    .sector-content {
      padding: 2rem 0;
    }

    .sector-number {
      font-size: 0.875rem;
      letter-spacing: 2px;
      color: var(--secondary);
      margin-bottom: 1rem;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    .sector-content h3 {
      font-size: 2.5rem;
      font-weight: 400;
      letter-spacing: -0.5px;
      margin-bottom: 1.5rem;
    }

    .sector-content p {
      font-size: 1.1rem;
      color: var(--secondary);
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .sector-link {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--accent);
      text-decoration: none;
      font-size: 1rem;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-weight: 500;
      transition: gap 0.3s;
    }

    .sector-link:hover {
      gap: 1.25rem;
    }

    /* Why Us Section */
    .why-us {
      padding: 8rem 0;
      background: var(--white);
    }

    .advantages-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
      margin-top: 4rem;
    }

    .advantage-card {
      padding: 2rem 0;
    }

    .advantage-icon {
      width: 60px;
      height: 60px;
      background: var(--accent);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    .advantage-card h4 {
      font-size: 1.5rem;
      font-weight: 400;
      margin-bottom: 1rem;
    }

    .advantage-card p {
      color: var(--secondary);
      line-height: 1.7;
      font-size: 1rem;
    }

    /* Partners Section */
    .partners {
      padding: 8rem 0;
      background: var(--bg);
    }

    .partners-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      margin-top: 4rem;
    }

    .partner-logo {
      background: var(--white);
      padding: 3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      border: 1px solid var(--border);
      height: 150px;
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--secondary);
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    /* CTA Section */
    .cta {
      padding: 8rem 0;
      background: var(--primary);
      color: var(--white);
      text-align: center;
    }

    .cta h2 {
      font-size: clamp(2.5rem, 4vw, 3.5rem);
      font-weight: 300;
      margin-bottom: 2rem;
    }

    .cta p {
      font-size: 1.25rem;
      opacity: 0.9;
      margin-bottom: 3rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-button-large {
      display: inline-block;
      padding: 1.25rem 3rem;
      background: var(--accent);
      color: var(--white);
      text-decoration: none;
      border-radius: 4px;
      font-size: 1.1rem;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-weight: 500;
      transition: background 0.3s, transform 0.3s;
    }

    .cta-button-large:hover {
      background: #1d4ed8;
      transform: translateY(-2px);
    }

    /* Contact Section */
    .contact {
      padding: 8rem 0;
      background: var(--white);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 4rem;
      margin-top: 4rem;
    }

    .contact-item h4 {
      font-size: 1.25rem;
      font-weight: 500;
      margin-bottom: 1.5rem;
    }

    .contact-item p {
      color: var(--secondary);
      line-height: 1.8;
      font-size: 1rem;
      margin-bottom: 0.75rem;
    }

    .contact-item a {
      color: var(--accent);
      text-decoration: none;
      transition: color 0.3s;
    }

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

    /* Footer */
    footer {
      background: var(--primary);
      color: rgba(255, 255, 255, 0.6);
      padding: 3rem 0;
      text-align: center;
    }

    footer p {
      font-size: 0.95rem;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    /* Animations */
    .fade-in {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Tablet */
    @media (max-width: 1024px) {
      .nav-links {
        display: none;
      }

      .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
      }

      .contact-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* Mobile */
    @media (max-width: 768px) {
      .nav-container {
        padding: 1rem 1.5rem;
      }

      .logo {
        font-size: 1.25rem;
      }

      .contact-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
      }

      /* Hero Mobile */
      .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 60px;
      }

      .hero-content {
        padding: 0 1.5rem;
      }

      .hero-label {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
      }

      .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.3;
      }

      .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
      }

      .hero-stats {
        flex-wrap: wrap;
        gap: 2rem;
        margin-top: 2.5rem;
      }

      .hero-stat {
        flex: 0 0 calc(50% - 1rem);
        padding-left: 1rem;
        border-left: 1px solid rgba(255, 255, 255, 0.3);
      }

      .hero-stat-number {
        font-size: 2rem;
        margin-bottom: 0.25rem;
      }

      .hero-stat-label {
        font-size: 0.85rem;
      }

      /* Container Mobile */
      .container {
        padding: 0 1.5rem;
      }

      /* Intro Mobile */
      .intro {
        padding: 4rem 0;
      }

      .intro h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
      }

      .intro p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
      }

      /* Section Headers Mobile */
      .section-header {
        margin-bottom: 3rem;
      }

      .section-label {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
      }

      .section-header h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
      }

      .section-header p {
        font-size: 1rem;
        line-height: 1.6;
      }

      /* Sectors Mobile */
      .sectors {
        padding: 4rem 0;
      }

      .sector-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
      }

      .sector-item:nth-child(even) {
        direction: ltr;
      }

      .sector-image {
        height: 280px;
        border-radius: 2px;
      }

      .sector-content {
        padding: 0;
      }

      .sector-number {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
      }

      .sector-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
      }

      .sector-content p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
      }

      .sector-link {
        font-size: 0.95rem;
      }

      /* Advantages Mobile */
      .why-us {
        padding: 4rem 0;
      }

      .advantages-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 2.5rem;
      }

      .advantage-card {
        padding: 0;
      }

      .advantage-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
      }

      .advantage-card h4 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
      }

      .advantage-card p {
        font-size: 0.95rem;
        line-height: 1.6;
      }

      /* CTA Mobile */
      .cta {
        padding: 4rem 0;
      }

      .cta h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
      }

      .cta p {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
      }

      .cta-button-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        display: block;
        margin: 0 auto;
      }

      /* Contact Mobile */
      .contact {
        padding: 4rem 0;
      }

      .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 2.5rem;
      }

      .contact-item h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
      }

      .contact-item p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 0.5rem;
      }

      /* Footer Mobile */
      footer {
        padding: 2rem 0;
      }

      footer p {
        font-size: 0.85rem;
        padding: 0 1.5rem;
        line-height: 1.6;
      }
    }

    /* Small Mobile */
    @media (max-width: 480px) {
      .hero h1 {
        font-size: 1.75rem;
      }

      .hero-subtitle {
        font-size: 1rem;
      }

      .hero-stats {
        gap: 1.5rem;
      }

      .hero-stat {
        flex: 0 0 100%;
      }

      .sector-image {
        height: 220px;
      }

      .section-header h2 {
        font-size: 1.5rem;
      }

      .sector-content h3 {
        font-size: 1.35rem;
      }
    }

    html {
      scroll-behavior: smooth;
    }

    .header-logo {
  display: flex;
  align-items: center; /* выравнивает по вертикали */
  gap: 8px; /* расстояние между логотипом и текстом */
}

.header-logo img {
  height: 40px;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
}

#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 640px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    font-family: sans-serif;
    z-index: 9999;
}

    body {
      overflow-x: hidden;
    }

    #hero-slider {
      height: 100vh;
      position: relative;
      overflow: hidden;
    }

    .slider-container {
      position: relative;
      height: 100%;
      width: 100%;
    }

    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      z-index: 1;
    }

    .slide.active {
      opacity: 1;
      z-index: 2;
    }

    .slide-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      transform: scale(1);
      transition: transform 8s ease-out;
    }

    .slide.active .slide-bg {
      transform: scale(1.1);
    }

    .slide-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
      z-index: 1;
    }

    .slide-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding: 0 5%;
      max-width: 1400px;
      margin: 0 auto;
    }

    .slide-number {
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 3px;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 1rem;
      text-transform: uppercase;
      opacity: 0, ;
      transform: translateY(30px);
      transition: all 0.8s ease 0.2s;
    }

    .slide.active .slide-number {
      opacity: 1;
      transform: translateY(0);
    }

    .slide-title {
      font-size: clamp(3rem, 4vw, 5rem);
      font-weight: 500;
      color: #fff;
      margin-bottom: 1.5rem;
      line-height: 1.1;
      max-width: 800px;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease 0.4s;
    }

    .slide.active .slide-title {
      opacity: 1;
      transform: translateY(0);
    }

    .slide-description {
      /* font-size: clamp(1rem, 2vw, 1.25rem); */
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 2.5rem;
      max-width: 650px;
      line-height: 1.6;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease 0.6s;

      font-size: 1.5rem;


    }

    .slide.active .slide-description {
      opacity: 1;
      transform: translateY(0);
    }

    .slide-btn {
      padding: 1rem 2.5rem;
      font-size: 1.1rem;
      font-weight: 600;
      color: #fff;
      background: #2563EB;
      border: 2px solid #2563EB;
      border-radius: 4px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateY(30px);
      cursor: pointer;
    }

    .slide.active .slide-btn {
      opacity: 1;
      transform: translateY(0);
      transition: all 0.8s ease 0.8s;
    }

    .slide-btn:hover {
      background: transparent;
      color: #fff;
      transform: translateX(10px);
    }

    .slider-controls {
      position: absolute;
      bottom: 8%;
      right: 5%;
      z-index: 10;
      display: flex;
      gap: 1rem;
    }

    .control-btn {
      width: 60px;
      height: 60px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      color: #fff;
      font-size: 1.25rem;
    }

    .control-btn:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: scale(1.1);
    }

    .slider-dots {
      position: absolute;
      bottom: 8%;
      left: 5%;
      z-index: 10;
      display: flex;
      gap: 1rem;
    }

    .dot {
      width: 12px;
      height: 12px;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
    }

    .dot.active {
      background: #2563EB;
      width: 40px;
      border-radius: 6px;
    }

    .dot:hover {
      background: rgba(255, 255, 255, 0.6);
    }

    .progress-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      background: #2563EB;
      width: 0%;
      z-index: 11;
      transition: width 0.1s linear;
    }

    @media (max-width: 768px) {
      .slide-content {
        padding: 0 1.5rem;
      }

      .slider-controls {
        bottom: 5%;
        right: 1.5rem;
      }

      .slider-dots {
        bottom: 5%;
        left: 1.5rem;
      }

      .control-btn {
        width: 50px;
        height: 50px;
      }
    }
  