* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #f8fafc;
      color: #0b1a2b;
      line-height: 1.5;
    }

    .container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* header / hero */
    .hero {
      background: linear-gradient(145deg, #0b1a2b 0%, #1a2f44 100%);
      color: white;
      padding: 60px 0 50px;
      border-bottom-left-radius: 40px;
      border-bottom-right-radius: 40px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }

    .hero h1 {
      font-size: 2.4rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.2;
      max-width: 900px;
      margin-bottom: 20px;
    }

    .hero .subhead {
      font-size: 1.2rem;
      font-weight: 500;
      opacity: 0.9;
      max-width: 700px;
      margin-bottom: 30px;
      border-left: 4px solid #f5b042;
      padding-left: 18px;
    }

    .hero .badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px 35px;
      margin-top: 15px;
    }

    .hero .badge-row span {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 500;
      font-size: 1rem;
      background: rgba(255,255,255,0.06);
      padding: 6px 16px 6px 12px;
      border-radius: 40px;
      backdrop-filter: blur(2px);
      border: 1px solid rgba(255,255,255,0.08);
    }

    .hero .badge-row i {
      color: #f5b042;
      font-size: 1.2rem;
    }

    .section-title {
      font-size: 2rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin: 50px 0 30px;
      position: relative;
      display: inline-block;
    }
    .section-title:after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 60px;
      height: 4px;
      background: #f5b042;
      border-radius: 4px;
    }

    .section-sub {
      font-size: 1.1rem;
      color: #2c3e50;
      margin-top: -10px;
      margin-bottom: 30px;
    }

    /* карточки этапов */
    .stages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin: 30px 0 20px;
    }

    .stage-card {
      background: white;
      padding: 28px 22px;
      border-radius: 28px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.04);
      transition: 0.25s ease;
      border: 1px solid #eef2f6;
    }

    .stage-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 36px -12px rgba(0,0,0,0.12);
      border-color: #dce3ec;
    }

    .stage-card .emoji-big {
      font-size: 2.4rem;
      margin-bottom: 12px;
      display: block;
    }

    .stage-card h3 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #0b1a2b;
    }

    .stage-card p {
      color: #2a4058;
      font-weight: 400;
      font-size: 0.98rem;
    }

    /* пакеты */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 25px;
      margin: 30px 0 20px;
    }

    .pricing-card {
      background: white;
      border-radius: 32px;
      padding: 28px 20px 25px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.04);
      border: 1px solid #edf2f7;
      transition: 0.2s;
      display: flex;
      flex-direction: column;
    }

    .pricing-card.highlight {
      border: 2px solid #f5b042;
      background: #fffcf5;
      position: relative;
    }

    .pricing-card.highlight:before {
      content: 'Популярный';
      position: absolute;
      top: -12px;
      right: 20px;
      background: #f5b042;
      color: #0b1a2b;
      font-weight: 700;
      font-size: 0.7rem;
      padding: 4px 16px;
      border-radius: 30px;
      letter-spacing: 0.3px;
      text-transform: uppercase;
    }

    .pricing-card .pack-name {
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 4px;
    }

    .pricing-card .pack-desc {
      color: #3a5770;
      font-size: 0.95rem;
      margin-bottom: 20px;
      border-bottom: 1px solid #eaf0f5;
      padding-bottom: 18px;
    }

    .pricing-card .price {
      font-size: 2rem;
      font-weight: 800;
      color: #0b1a2b;
      margin: 8px 0 10px;
    }
    .pricing-card .price small {
      font-size: 0.9rem;
      font-weight: 500;
      color: #5b6f82;
      margin-left: 4px;
    }

    .pricing-card .features {
      list-style: none;
      margin: 12px 0 20px;
      flex-grow: 1;
    }

    .pricing-card .features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.94rem;
      margin-bottom: 10px;
      color: #1f3347;
    }

    .pricing-card .features i {
      color: #f5b042;
      font-size: 0.9rem;
      margin-top: 4px;
      min-width: 16px;
    }

    .btn-primary {
      background: #f5b042;
      color: #0b1a2b;
      border: none;
    }

    .btn-primary:hover {
      background:#e09e30;
      cursor: pointer;
      transform: scale(1.25);
    }

    .note-block {
      background: #eef3f9;
      border-radius: 40px;
      padding: 28px 30px;
      margin: 40px 0 30px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .note-block .note-text {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .note-block .note-text i {
      font-size: 1.8rem;
      color: #1a2f44;
    }

    .note-block .note-text span {
      font-weight: 500;
    }

    .note-block .badge-small {
      background: #0b1a2b;
      color: white;
      padding: 6px 24px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.85rem;
    }

    .footer-note {
      margin: 40px 0 20px;
    	/*
      background: white;
      border-radius: 30px;
      padding: 30px 28px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.02);
      border: 1px solid #eaf0f5;
	*/
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 20px;
    }

    .footer-note .left i {
      color: #f5b042;
      margin-right: 10px;
      font-size: 1.2rem;
    }

    .footer-note .left {
      font-weight: 500;
      color: #1a2f44;
    }

    .footer-note .right {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer-note .right .chip {
      background: #f1f5f9;
      padding: 6px 18px;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 500;
      color: #1a2f44;
    }

    .cta-section {
      text-align: center;
      margin: 40px 0 20px;
      background: #0b1a2b;
      color: white;
      padding: 50px 30px;
      border-radius: 50px;
    }

    .cta-section h2 {
      font-size: 2rem;
      font-weight: 700;
    }

    .cta-section .btn-primary {
      margin-top: 20px;
      display: inline-block;
      padding: 25px 50px;
      font-size: 1.5rem;
      background: #f5b042;
      color: #0b1a2b;
      font-weight: 700;
      border-radius: 60px; 
      font-weight: 700; 
      margin: 25px; 
      text-decoration: none;
    }

    .cta-section .sub {
      opacity: 0.8;
      margin-top: 12px;
      font-size: 1rem;
    }

    hr {
      border: none;
      border-top: 2px dashed #d0dae6;
      margin: 40px 0;
    }

    @media (max-width: 700px) {
      .hero h1 {
        font-size: 1.8rem;
      }
      .hero .subhead {
        font-size: 1rem;
      }
      .section-title {
        font-size: 1.7rem;
      }
      .pricing-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 500px) {
      .pricing-grid {
        grid-template-columns: 1fr;
      }
      .hero .badge-row span {
        font-size: 0.9rem;
      }
      .note-block {
        flex-direction: column;
        align-items: flex-start;
      }
    }


 /* Стили кнопки */

  .feedback-btn:hover {
    background: #0056b3;
  }

  /* Модальное окно */
  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
  }
  .modal-content {
    background: #0b1a2b;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  }
  .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
  }
  .form-group {
    margin-bottom: 15px;
  }
  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
  }
  .form-group textarea {
    height: 100px;
    resize: vertical;
  }
  .submit-btn {
    width: 100%;
    padding: 12px;
    background: #f5b042;
    color: #0b1a2b;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
  }
  .submit-btn:hover {
    background: #f5b042;
  }
  #formStatus {
    margin-top: 10px;
    text-align: center;
  }

  /* Стили для баннера */
        #cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 600px;
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
            padding: 20px 25px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            z-index: 9999;
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
            transition: opacity 0.4s ease, transform 0.4s ease;
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        #cookie-banner.hidden {
            opacity: 0;
            transform: translateX(-50%) translateY(30px);
            pointer-events: none;
        }

        #cookie-banner p {
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.5;
            flex: 1 1 200px;
        }

        #cookie-banner a {
            color: #64f0b0;
            text-decoration: underline;
            font-weight: 500;
        }

        #cookie-banner a:hover {
            color: #a8f0d0;
        }

        /* Новая кнопка: полупрозрачная, цвет #f5b042 */
        #accept-cookies {
            background: rgba(245, 176, 66, 0.7); /* полупрозрачный #f5b042 */
            color: #1a1a2e;
            border: 2px solid rgba(245, 176, 66, 0.9);
            padding: 12px 28px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, border-color 0.3s, transform 0.1s;
            white-space: nowrap;
            flex-shrink: 0;
            backdrop-filter: blur(4px); /* лёгкий эффект стекла */
            box-shadow: 0 4px 16px rgba(245, 176, 66, 0.25);
        }

        #accept-cookies:hover {
            background: rgba(245, 176, 66, 0.9); /* чуть плотнее при наведении */
            border-color: #f5b042;
        }

        #accept-cookies:active {
            transform: scale(0.96);
        }

        /* Адаптив для маленьких экранов */
        @media (max-width: 480px) {
            #cookie-banner {
                flex-direction: column;
                text-align: center;
                padding: 20px;
                bottom: 10px;
                width: 95%;
            }
            #cookie-banner p {
                flex: unset;
                width: 100%;
            }
            #accept-cookies {
                width: 100%;
                justify-content: center;
                padding: 14px;
            }
        }
