
      /* ==========================================
           ФОРМА
           ========================================== */
      .service-form {
        background: transparent;
      }

      .service-form__title {
        font-size: 32px;
        font-weight: 500;
        color: #fff;
        margin-bottom: 12px;
        text-align: center;
      }

      .service-form__description {
        font-size: 1rem;
        color: #a0a6a6;
        max-width: 720px;
        line-height: 1.6;
        margin: 0 auto 32px;
        text-align: center;
      }

      @media (min-width: 600px) {
        .service-form__title {
          font-size: 48px;
        }
      }

      /* ==========================================
           ПРОГРЕСС-БАР (внутри формы)
           ========================================== */
      .service-form__progress {
        margin-bottom: 32px;
      }

      .service-form__progress-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
        font-size: 0.85rem;
        color: #a0a6a6;
      }

      .service-form__progress-bar {
        width: 100%;
        height: 4px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 2px;
        overflow: hidden;
      }

      .service-form__progress-fill {
        height: 100%;
        background: #ff9549;
        transition: width 0.4s ease;
        border-radius: 2px;
      }

      /* ==========================================
           ШАГИ ФОРМЫ
           ========================================== */
      .service-form__step {
        display: none;
        animation: fadeIn 0.4s ease;
        border: none;
      }

      .service-form__step--active {
        display: block;
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
          transform: translateX(16px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      .service-form__step-title {
        font-size: 20px;
        font-weight: 500;
        color: #fff;
        margin-bottom: 24px;
      }

      /* ==========================================
           NOTICE
           ========================================== */
      .service-form__notice {
        display: none;
        padding: 12px 16px;
        background: rgba(255, 68, 68, 0.08);
        border: 1px solid rgba(255, 68, 68, 0.2);
        border-radius: 8px;
        color: #ff6b6b;
        font-size: 0.9rem;
        margin-bottom: 20px;
      }

      .service-form__notice--visible {
        display: block;
      }

      /* ==========================================
           GRID
           ========================================== */
      .service-form__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 32px;
      }
      
      .service-form__step[data-step="2"] .service-form__grid {
            grid-template-columns: 1fr 2fr;
      }

      .service-form__grid--full {
        grid-column: 1 / -1;
      }

      /* ==========================================
           ПОЛЯ
           ========================================== */
      .service-form__field {
        display: flex;
        flex-direction: column;
        margin-bottom: 16px;
      }

      .service-form__label {
        font-size: 0.8rem;
        font-weight: 500;
        color: #a0a6a6;
        margin-bottom: 8px;
      }

      .service-form__required {
        color: #ef2929;
        margin-left: 2px;
      }

      .service-form__input,
      .service-form__select,
      .service-form__textarea {
        padding: 14px 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        font-size: 0.95rem;
        background: rgba(15, 17, 17, 0.6);
        font-family: inherit;
        color: #fff;
        transition: all 0.2s;
        width: 100%;
      }

      .service-form__input::placeholder,
      .service-form__textarea::placeholder {
        color: #606666;
      }

      .service-form__input:focus,
      .service-form__select:focus,
      .service-form__textarea:focus {
        outline: none;
        border-color: #ff9549;
        background: rgba(15, 17, 17, 0.8);
      }

      .service-form__input:hover,
      .service-form__select:hover,
      .service-form__textarea:hover {
        border-color: rgba(255, 149, 73, 0.5);
      }

      .service-form__textarea {
        resize: vertical;
        min-height: 100px;
      }

      .service-form__select {
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a0a6a6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        padding-right: 48px;
        cursor: pointer;
      }

      .service-form__select option {
        background: #0f1111;
        color: #dbdbdb;
      }

      .service-form__error {
        display: none;
        font-size: 0.75rem;
        color: #ef2929;
        margin-top: 6px;
      }

      .service-form__field--error .service-form__input,
      .service-form__field--error .service-form__select,
      .service-form__field--error .service-form__textarea {
        border-color: #ef2929;
      }

      .service-form__field--error .service-form__error {
        display: block;
      }

      /* ==========================================
           RADIO BUTTONS (как на примере)
           ========================================== */
      .service-form__radio-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }

      .service-form__radio-label {
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
        padding: 12px 16px;
        border-radius: 8px;
        transition: all 0.2s;
        position: relative;
      }

      .service-form__radio-label:hover {
        background: rgba(255, 255, 255, 0.03);
      }

      .service-form__radio-input {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
      }

      .service-form__radio-custom {
        width: 20px;
        height: 20px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        position: relative;
        flex-shrink: 0;
        transition: all 0.2s;
      }

      .service-form__radio-custom::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        width: 10px;
        height: 10px;
        background: #ff9549;
        border-radius: 50%;
        transition: transform 0.2s;
      }

      .service-form__radio-input:checked + .service-form__radio-custom {
        border-color: #ff9549;
      }

      .service-form__radio-input:checked + .service-form__radio-custom::after {
        transform: translate(-50%, -50%) scale(1);
      }

      .service-form__radio-text {
        font-size: 0.9rem;
        color: #dbdbdb;
      }

      /* ==========================================
           CHECKBOX
           ========================================== */
      .service-form__checkbox-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
      }

      .service-form__checkbox-label {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        cursor: pointer;
        font-size: 0.85rem;
        color: #a0a6a6;
        line-height: 1.5;
      }

      .service-form__checkbox-input {
        width: 18px;
        height: 18px;
        accent-color: #ff9549;
        margin-top: 2px;
        flex-shrink: 0;
      }

      .service-form__checkbox-link {
        color: #ff9549;
        text-decoration: underline;
      }

      .service-form__checkbox-link:hover {
        color: #f28434;
      }

      .service-form__checkbox-label--error {
        color: #ef2929;
      }

      /* ==========================================
           СПИСОК ДИЛЕРОВ
           ========================================== */
      .service-form__dealer-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-height: 400px;
        overflow-y: auto;
        padding-right: 4px;
      }

      .service-form__dealer-list::-webkit-scrollbar {
        width: 4px;
      }

      .service-form__dealer-list::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 2px;
      }

      .service-form__dealer-list::-webkit-scrollbar-thumb {
        background: #ff9549;
        border-radius: 2px;
      }

      /* ==========================================
           КАРТА
           ========================================== */
      .service-form__map-wrapper {
        border-radius: 12px;
        overflow: hidden;
        height: 400px;
        background: transparent;
        position: relative;
        border: none;
      }

      .service-form__map-placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        color: #606666;
        font-size: 14px;
      }

      .service-form__map-container {
        width: 100%;
        height: 100%;
        background: transparent;
      }

      /* ==========================================
           SUMMARY
           ========================================== */
      .service-form__summary {
        background: rgba(255, 255, 255, 0.04);
        border-radius: 12px;
        padding: 20px 24px;
      }

      .service-form__summary-item {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }

      .service-form__summary-item:last-child {
        border-bottom: none;
      }

      .service-form__summary-label {
        font-size: 0.7rem;
        color: #7d8080;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }

      .service-form__summary-value {
        font-size: 1rem;
        color: #fff;
        font-weight: 500;
        margin-top: 2px;
      }

      /* ==========================================
           КНОПКИ
           ========================================== */
      .service-form__actions {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        margin-top: 32px;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
      }

      .service-form__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 32px;
        font-size: 0.95rem;
        font-weight: 500;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.2s;
        border: none;
        font-family: inherit;
      }

      .service-form__btn--primary {
        background: #ff9549;
        color: #0f1111;
        min-width: 160px;
      }

      .service-form__btn--primary:hover {
        background: #f28434;
      }

      .service-form__btn--primary:active {
        transform: scale(0.97);
      }

      .service-form__btn--secondary {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #dbdbdb;
      }

      .service-form__btn--secondary:hover {
        border-color: #ff9549;
        color: #ff9549;
      }

      .service-form__btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
      }

      .service-form__btn--spacer {
        visibility: hidden;
      }

      /* ==========================================
           SUCCESS
           ========================================== */
      .service-form__success {
        display: none;
        text-align: center;
      }

      .service-form__success--visible {
        display: block;
      }

      .service-form__success-title {
        font-size: 2rem;
        font-weight: 500;
        color: #4caf50;
        margin-bottom: 32px;
      }

      /* ==========================================
           АДАПТИВ
           ========================================== */
      @media (max-width: 860px) {
        .service-form__grid {
          grid-template-columns: 1fr;
          gap: 16px;
        }

        .service-form__radio-group {
          grid-template-columns: 1fr;
        }

        .service-form__title {
          font-size: 28px;
        }

        .service-form__step {
          padding: 24px 20px;
        }

        .service-form__actions {
          flex-direction: column;
        }

        .service-form__btn {
          width: 100%;
        }

        .service-form__btn--spacer {
          display: none;
        }

        .service-form__map-wrapper {
          height: 300px;
        }
      }

      @media (max-width: 480px) {
        .service-form__title {
          font-size: 24px;
        }

        .service-form__step-title {
          font-size: 18px;
        }

        .service-form__map-wrapper {
          height: 250px;
        }

        .container {
          padding: 24px 12px;
        }
        
      }
      
@media (max-width: 900px) {
    .block-media-text__inner {
        grid-template-columns: 1fr;
        gap: 20;
    }
    
    .file-block__wrap {
        grid-template-columns: 1fr;
        gap: 20;
    }
    
    .advan-service ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    
    .file-block__left, .file-block__right {
        padding: 40px 0;
    }
}
@media (max-width: 500px) {
    .file-block__link {
        padding: 10px 0;
            column-gap: 12px;
    }
    .road-assist__title {
            font-size: 33px;
    line-height: 36px;
    }
    .file-block__link svg {
        padding: 0;
    }
    .file-block__left, .file-block__right {
        padding: 30px 0;
    }
    .file-block__title {
        margin-bottom: 28px;
    }
    .advan-service ul {
        grid-template-columns: 1fr;
    }
    
    .advan-service__card-title {
        font-size: 18px;
            margin-top: 16px;
    margin-bottom: 16px;
    }
    .advan-service__card {
        margin: 0 auto;
    }
}