@font-face {
    font-family: 'Anton';
    src: url('fonts/Anton-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: #000;
    color: #f1f1f1;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-weight: 400;
  }
  
  h1 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header */
  .header-left {
    padding: 20px 0;
  }
  
  .branding-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .branding {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .logo {
    width: 64px;
    height: 64px;
  }
  
  .brand-name {
    font-size: 2.7em;
    font-weight: 700;
    color: #fff;
    font-family: 'Anton', Impact, sans-serif;
    line-height: 1;
    display: flex;
    align-items: center;
    height: 64px;
  }
  
  /* Buttons */
  .anchor-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
  }
  
  .anchor-button:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  }
  
  /* Main content */
  main {
    padding: 60px 0;
    padding-bottom: 0
  }
  
  h1 {
    font-size: 3.5em;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 30px;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
  }
  
  .description {
    font-size: 1.3em;
    margin-bottom: 60px;
    color: #b0b0b0;
    max-width: 800px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
  }
  
  .left-aligned {
    text-align: left !important;
    margin-left: 0 !important;
  }
  
  /* FAQ Section */
  .faq {
    margin: 60px 0;
  }
  
  .faq h2 {
    display: none;
  }
  
  .faq-item {
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 15px;
  }
  
  .faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
  }
  
  .faq-item h3 {
    color: #fff;
    font-size: 1.5em;
    margin-bottom: 0;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    display: inline;
  }
  
  .faq-item p {
    color: #b0b0b0;
    font-size: 1.1em;
    line-height: 1.7;
    margin-top: 0;
    display: inline;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
  }
  
  /* Form anchor for scroll positioning */
  .form-anchor {
    height: 80px;
    margin-top: -80px;
  }
  
  /* Form Popup */
  .form-popup-content {
    background: #1a1a1a;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideIn 0.3s ease-out;
  }
  
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .form-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 20px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .form-popup-header h2 {
    color: #fff;
    font-size: 1.5em;
    margin: 0;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
  }
  
  .close-form-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 2em;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s ease;
  }
  
  .close-form-btn:hover {
    color: #fff;
  }
  
  /* Form */
  form {
    padding: 30px 40px 40px 40px;
  }
  .form-placeholder {
    text-align: center;
    margin: 60px 0;
  }
  
  form {
    padding: 30px 40px 40px 40px;
  }
  
  form.hidden {
    display: none;
  }
  
  form h2 {
    color: #fff;
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
  }
  
  form input,
  form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1em;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
  }
  
  form input:focus,
  form textarea:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  }
  
  form input::placeholder,
  form textarea::placeholder {
    color: #888;
  }
  
  form textarea {
    height: 120px;
    resize: vertical;
  }
  
  form button {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  form button:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  }
  
  /* Popup */
  .popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .popup.hidden {
    display: none;
  }
  
  .popup-content {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .popup-content p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #b0b0b0;
    font-family: 'Inter', sans-serif;
  }
  
  .popup-content button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .popup-content button:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
  }
  
  /* Footer */
  footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    text-align: center;
    color: #666;
    font-family: 'Inter', sans-serif;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .branding-row {
      flex-direction: column;
      text-align: center;
    }
    
    h1 {
      font-size: 2.5em;
    }
    
    .brand-name {
      font-size: 2em;
      font-family: 'Anton', Impact, sans-serif;
    }
    
    .description {
      font-size: 1.1em;
    }
    
    .form-popup-content {
      width: 95%;
      max-height: 90vh;
    }
    
    .form-popup-header {
      padding: 20px 20px 15px 20px;
    }
    
    .form-popup-header h2 {
      font-size: 1.3em;
    }
    
    form {
      padding: 20px;
    }
  }
  
  .popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  
  .popup-content {
    background: #111;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px; /* Сделали шире */
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  }
  
  .popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none !important; /* Без фона */
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
  }
  
  .popup input,
  .popup textarea {
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    background: #222;
    color: #fff;
    border: 1px solid #444;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
  }
  
  .popup textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  .popup button[type="submit"] {
    background-color: #2a9d8f;
    color: white;
    border: none;
    padding: 14px;
    width: 100%;
    cursor: pointer;
    margin-top: 15px;
    font-size: 16px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
  }
  
  