 * {
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
      margin: 0;
      background: #f9fafb;
      color: #111;
    }

    html {
      scroll-behavior: smooth;
    }

    /* NAVBAR */
    .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      height: 80px;
      display: flex;
      align-items: center;
      padding: 0 20px;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid #e5e7eb;
      z-index: 1000;
    }

    .logo img {
      height: 70px;
    }

    .nav-links {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
    }

    .nav-links a {
      margin: 0 12px;
      text-decoration: none;
      color: #333;
      font-size: 14px;
      opacity: 0.7;
    }

    .nav-links a:hover {
      opacity: 1;
    }

    .lang-switcher {
      display: flex;
      gap: 6px;
      margin-left: auto;
      padding: 6px 10px;
      background: rgba(0,0,0,0.05);
      border-radius: 20px;
    }

    .flag-btn {
      width: 20px;
      cursor: pointer;
      opacity: 0.85;
      border-radius: 4px;
      transition: transform 0.2s, opacity 0.2s;
    }

    .flag-btn:hover {
      transform: scale(1.1);
      opacity: 1;
    }

    /* SECTIONS */
    section {
      padding: 120px 20px;
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
    }

    #home {
      padding-top: 140px;
    }

    h1 {
      font-size: 42px;
      margin-bottom: 10px;
    }

    p {
      color: #555;
      line-height: 1.6;
    }

    /* HOME LAYOUT */
    .home-content {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 60px;
      margin-top: 40px;
      flex-wrap: wrap;
    }
	
	.home-left {
	  flex: 1;
	  display: flex;
	  justify-content: center;
	}

	.home-right {
	  flex: 1;
	  height: 320px;
      overflow: hidden;
    }

    .valix-img {
      width: 150%;
      max-width: 150%;
    }

    .services ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .services li {
      font-size: 20px;
      margin-bottom: 14px;
      color: #333;
      position: relative;
      padding-left: 22px;
    }

    .services li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: #2563eb;
      font-weight: bold;
    }

    .main-img {
      width: 300px;
      margin-top: 20px;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    footer {
      text-align: center;
      padding: 40px;
      color: #777;
    }
	
	.services {
	  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	  gap: 20px;
	  margin-top: 50px;
	  text-align: left;
	}
	
	.cards-container {
	   display: flex;
	  gap: 20px;

	  overflow-x: auto;
	  padding-bottom: 10px;
	   scrollbar-width: none;
	}
			

	/* карточка */
	.card {
	  background: #fff;
	  flex: 0 0 100%;
	  min-width: 100%;
	  padding: 20px;
	  border-radius: 16px;
	  text-align: left;
	  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
	  transition: all 0.25s ease;
	  
	  scroll-snap-align: start;
	}

	/* hover эффект */
	.card:hover {
	  transform: translateY(-5px);
	  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
	}

	/* иконка */
	.card .icon {
	  width: 44px;
	  height: 44px;
	  background: #eef2ff;
	  border-radius: 12px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  font-size: 20px;
	  margin-bottom: 12px;
	}

	/* заголовок */
	.card h3 {
	  margin: 0 0 8px;
	  font-size: 18px;
	}

	/* текст */
	.card p {
	  font-size: 14px;
	  color: #666;
	}
	
	.cards-container::-webkit-scrollbar {
	  display: none;
	}

	.slider-controls {
	  display: flex;
	  justify-content: flex-end;
	  gap: 10px;
	  margin-bottom: 10px;
	}

	.slider-controls button {
	  border: none;
	  background: #fff;
	  border-radius: 10px;
	  padding: 8px 12px;
	  cursor: pointer;
	  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	  transition: all 0.2s ease;
	}

	.slider-controls button:hover {
	  transform: translateY(-2px);
	}
	
	.dots {
	  display: flex;
	  justify-content: center;
	  gap: 8px;
	  margin-bottom: 10px;
	}

	.dot {
	  width: 8px;
	  height: 8px;
	  border-radius: 50%;
	  background: #cbd5e1;
	  cursor: pointer;
	  transition: all .2s;
	}

	.dot.active {
	  width: 18px;
	  border-radius: 999px;
	  background: #2563eb;
	}