/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000;
    color: #eee;
    line-height: 1.6;
    font-size: 16px;
  }
  
  .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
  }
  
  .logo {
    font-weight: 300;
    font-size: 18px;
    color: #b0b0b0;
  }
  
  .nav a {
    color: white;
    margin-left: 30px;
    text-decoration: none;
    font-size: 14px;
  }
  
  .nav a:hover {
    text-decoration: underline;
  }
  
  /* Hero (первая часть) */
  .hero {
    padding: 50px 0 70px;
    text-align: center;
  }
  
  .hero h1 {
    font-weight: 700;
    font-size: 28px;
    max-width: 700px;
    margin: 0 auto 20px;
  }
  
  .hero-text {
    font-weight: 300;
    font-size: 13px;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #aaa;
    line-height: 1.4;
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .btn {
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    padding: 12px 25px;
    border-radius: 25px;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    user-select: none;
    transition: opacity 0.2s ease;
  }
  
  .btn-primary {
    background-color: white;
    color: black;
  }
  
  .btn-outline {
    background-color: transparent;
    color: white;
    border: 1px solid white;
  }
  
  .btn:hover {
    opacity: 0.8;
  }
  
  /* Trust section */
  .trust-section {
    padding-bottom: 50px;
  }
  
  .trust-container h2 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .trust-text {
    font-weight: 300;
    font-size: 13px;
    color: #aaa;
    max-width: 480px;
    margin-bottom: 20px;
  }
  
  .trust-stats {
    display: flex;
    gap: 40px;
    font-weight: 300;
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  
  .stat-number {
    font-weight: 700;
    font-size: 24px;
    color: white;
    margin-right: 6px;
  }
  
  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 20px;
  }
  
  .feature {
    background-color: #121217;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: white;
    min-height: 350px;
  }
  
  .feature h3 {
    font-weight: 700;
    font-size: 16px;
  }
  
  .feature p {
    font-weight: 300;
    font-size: 12px;
    color: #aaa;
    flex-grow: 1;
  }
  
  .feature img {
    max-width: 100%;
    border-radius: 6px;
    margin-top: auto;
  }
  
  .final-text {
    font-weight: 300;
    font-size: 14px;
    text-align: center;
    max-width: 860px;
    margin: 50px auto 0;
    color: #999;
  }
  
  /* Вторая часть */
  .second-section {
    padding: 40px 0 80px;
  }
  
  .second-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .small-text {
    font-weight: 300;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 6px;
  }
  
  .second-section h2 {
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 20px;
    max-width: 480px;
  }
  
  .second-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .second-image {
    flex: 1 1 320px;
    max-width: 480px;
    border-radius: 10px;
    object-fit: cover;
  }
  
  .second-text-block {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: white;
  }
  
  .second-text-block h3 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 4px;
  }
  
  .availability {
    font-weight: 300;
    font-size: 12px;
    color: #aaa;
    margin-bottom: 15px;
  }
  
  .description {
    font-weight: 300;
    font-size: 13px;
    color: #bbb;
  }
  
  .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
  }
  
  .tag {
    border: 1px solid white;
    border-radius: 30px;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 500;
    user-select: none;
  }
  
  .contact-btn {
    align-self: start;
    padding-left: 30px;
    padding-right: 30px;
  }
  
  /* Footer */
  .footer {
    background-color: #121217;
    padding: 40px 20px 30px;
    color: #999;
  }
  
  .footer-container {
    max-width: 1140px;
    margin: 0 auto;
  }
  
  .footer h2 {
    font-weight: 700;
    font-size: 20px;
    color: white;
    margin-bottom: 12px;
    max-width: 720px;
  }
  
  .footer-desc {
    font-weight: 300;
    font-size: 13px;
    max-width: 720px;
    margin-bottom: 24px;
  }
  
  .contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 720px;
    margin-bottom: 30px;
  }
  
  .contact-form input {
    flex: 1 1 220px;
    padding: 12px 15px;
    border-radius: 30px;
    border: 1px solid #555;
    background-color: #222;
    color: white;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s ease;
  }
  
  .contact-form input:focus {
    border-color: white;
  }
  
  .send-btn {
    flex: 1 1 150px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    padding: 12px 25px;
    border: none;
    background-color: white;
    color: black;
    cursor: pointer;
    user-select: none;
    transition: opacity 0.2s ease;
  }
  
  .send-btn:hover {
    opacity: 0.8;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  
  .footer-logo {
    font-weight: 300;
    font-size: 18px;
    color: #b0b0b0;
  }
  
  .footer-nav a {
    font-weight: 300;
    font-size: 12px;
    color: #999;
    margin-left: 20px;
    text-decoration: none;
  }
  
  .footer-nav a:first-child {
    margin-left: 0;
  }
  
  .footer-nav a:hover {
    text-decoration: underline;
  }
  
  .copyright {
    font-weight: 300;
    font-size: 12px;
    color: #666;
    text-align: center;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .second-content {
      flex-direction: column;
      align-items: center;
    }
  
    .second-image,
    .second-text-block {
      max-width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 22px;
    }
  
    .hero-text {
      font-size: 12px;
    }
  
    .trust-container h2 {
      font-size: 18px;
    }
  
    .trust-stats {
      flex-direction: column;
      gap: 10px;
    }
  }
  